Still trying to propagate options down...
https://mesonbuild.com/Build-options.html#yielding-to-superproject-option
This commit is contained in:
parent
b5c4182a19
commit
32c4f5e5b5
2 changed files with 8 additions and 6 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue