The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
271 B
10 lines
271 B
5 years ago
|
project('boosttest', 'cpp',
|
||
|
default_options : ['cpp_std=c++11'])
|
||
|
|
||
|
if not dependency('boost', required: false).found()
|
||
|
error('MESON_SKIP_TEST test requires boost')
|
||
|
endif
|
||
|
|
||
|
# abc doesn't exist
|
||
|
linkdep = dependency('boost', modules : ['thread', 'system', 'test', 'abc'])
|