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.
11 lines
358 B
11 lines
358 B
project('boosttest', 'cxx') |
|
|
|
# Use a Boost module that requires a shared library. |
|
# Eventually we would like to be able to detect Boost |
|
# multiple times with different library combinations. |
|
|
|
linkdep = find_dep('boost', modules : 'thread', required : true) |
|
|
|
linkexe = executable('linkedexe', 'linkexe.cc', deps : linkdep) |
|
|
|
add_test('Boost linktext', linkexe)
|
|
|