More trying...

This commit is contained in:
King_DuckZ 2020-05-01 21:14:01 +02:00
parent 32c4f5e5b5
commit 482410356d
2 changed files with 3 additions and 1 deletions

View file

@ -10,6 +10,8 @@ wren_dep = dependency('wren', version: '>=0.2.0',
'default_library=static',
'build_testing=false',
'wren_with_cli=false',
'wren_with_rand=' + get_option('wren_with_rand').to_string(),
'wren_with_meta=' + get_option('wren_with_meta').to_string(),
],
static: true,
)

View file

@ -1,4 +1,4 @@
option('build_testing', type: 'boolean', value: false, yield: true)
option('build_testing', type: 'boolean', value: false)
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)