summaryrefslogtreecommitdiffstats
path: root/test cases/unit/31 forcefallback/meson.build
blob: 8d84a603577f7987c11ed1f4f87d141473d7754a (plain)
1
2
3
4
5
6
7
8
9
project('mainproj', 'c',
  default_options : [])

zlib_dep = dependency('zlib', fallback: ['notzlib', 'zlib_dep'])
notfound_dep = dependency('cannotabletofind', fallback: ['definitelynotfound', 'some_var'], required : false)

test_not_zlib = executable('test_not_zlib', ['test_not_zlib.c'], dependencies: [zlib_dep, notfound_dep])

test('test_not_zlib', test_not_zlib)