Still trying to propagate options down...

https://mesonbuild.com/Build-options.html#yielding-to-superproject-option
This commit is contained in:
King_DuckZ 2020-05-01 20:45:33 +02:00
parent b5c4182a19
commit 32c4f5e5b5
2 changed files with 8 additions and 6 deletions

View file

@ -1,2 +1,4 @@
option('wren_with_rand', type: 'boolean', value: false)
option('wren_with_meta', type: 'boolean', value: false)
option('build_testing', type: 'boolean', value: false, yield: true)
option('wren_with_cli', type: 'boolean', value: true, yield: true)
option('wren_with_rand', type: 'boolean', value: false, yield: true)
option('wren_with_meta', type: 'boolean', value: false, yield: true)

View file

@ -1,4 +1,4 @@
option('build_testing', type: 'boolean', value: false)
option('wren_with_cli', type: 'boolean', value: true)
option('wren_with_rand', type: 'boolean', value: false)
option('wren_with_meta', type: 'boolean', value: false)
option('build_testing', type: 'boolean', value: false, yield: true)
option('wren_with_cli', type: 'boolean', value: true, yield: true)
option('wren_with_rand', type: 'boolean', value: false, yield: true)
option('wren_with_meta', type: 'boolean', value: false, yield: true)