summaryrefslogtreecommitdiff
path: root/test cases/unit/116 c cpp stds/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/unit/116 c cpp stds/meson.build')
-rw-r--r--test cases/unit/116 c cpp stds/meson.build17
1 files changed, 17 insertions, 0 deletions
diff --git a/test cases/unit/116 c cpp stds/meson.build b/test cases/unit/116 c cpp stds/meson.build
new file mode 100644
index 000000000..fb68af610
--- /dev/null
+++ b/test cases/unit/116 c cpp stds/meson.build
@@ -0,0 +1,17 @@
+# SPDX-License-Identifier: Apache-2.0
+# Copyright © 2024 Intel Corporation
+
+project(
+ 'c cpp stds',
+ default_options: [
+ 'c_std=gnu89,c89',
+ 'cpp_std=gnu++98,vc++11',
+ ],
+)
+
+if get_option('with-c')
+ add_languages('c', 'cpp', native : false)
+endif
+if get_option('with-objc')
+ add_languages('objc', 'objcpp', native : false)
+endif