cc4cfbcad9
added detection for unknown
base options, but it was not working for subproject base options. This
should fix it.
pull/12957/head
parent
0cd74c96f1
commit
9e270f030f
4 changed files with 9 additions and 2 deletions
@ -1,5 +1,7 @@ |
||||
project('reconfigure', 'c', |
||||
default_options: ['c_std=c89']) |
||||
|
||||
subproject('sub') |
||||
|
||||
message('b_ndebug: ' + get_option('b_ndebug')) |
||||
message('c_std: ' + get_option('c_std')) |
||||
|
@ -0,0 +1,5 @@ |
||||
project('sub', 'c', |
||||
default_options: ['c_std=c89']) |
||||
|
||||
message('b_ndebug: ' + get_option('b_ndebug')) |
||||
message('c_std: ' + get_option('c_std')) |
Loading…
Reference in new issue