summaryrefslogtreecommitdiffstats
path: root/test cases/unit/37 mixed command line args/meson_options.txt
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test cases/unit/37 mixed command line args/meson_options.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/test cases/unit/37 mixed command line args/meson_options.txt b/test cases/unit/37 mixed command line args/meson_options.txt
new file mode 100644
index 0000000..5a4bc22
--- /dev/null
+++ b/test cases/unit/37 mixed command line args/meson_options.txt
@@ -0,0 +1,10 @@
+option(
+ 'one',
+ type : 'string',
+)
+option(
+ 'two',
+ type : 'combo',
+ choices : ['foo', 'bar'],
+ value : 'foo',
+)