summaryrefslogtreecommitdiffstats
path: root/test cases/unit/3 subproject defaults/meson.build
blob: dafa40affccc679bbbbaf47abe0f21ada322d0a8 (plain)
1
2
3
4
5
6
7
8
9
10
project('subproject defaults', 'c',
  default_options : ['defopoverride=defopt', # This should be overridden.
                     'fromcmdline=defopt']   # This should get the value set in command line.
  )

subproject('foob', default_options : ['fromspfunc=spfunc', 'fromspfunconly=spfunc'])

assert(get_option('fromcmdline') == 'cmdline', 'Default option defined in cmd line is incorrect: ' + get_option('fromcmdline'))
assert(get_option('defopoverride') == 'defopt', 'Default option without cmd line override is incorrect: ' + get_option('defopoverride'))
assert(get_option('fromoptfile') == 'optfile', 'Default value from option file is incorrect: ' + get_option('fromoptfile'))