aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/47 reconfigure/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/unit/47 reconfigure/meson.build')
-rw-r--r--test cases/unit/47 reconfigure/meson.build11
1 files changed, 11 insertions, 0 deletions
diff --git a/test cases/unit/47 reconfigure/meson.build b/test cases/unit/47 reconfigure/meson.build
new file mode 100644
index 0000000..4f35458
--- /dev/null
+++ b/test cases/unit/47 reconfigure/meson.build
@@ -0,0 +1,11 @@
+project('test-reconfigure', 'c')
+
+message('opt1 ' + get_option('opt1'))
+message('opt2 ' + get_option('opt2'))
+message('opt3 ' + get_option('opt3'))
+message('opt4 ' + get_option('opt4'))
+
+exe = executable('test1', 'main.c')
+test('test1', exe)
+
+sub1 = subproject('sub1')