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.
17 lines
562 B
17 lines
562 B
project('cmakeSubTest_advanced', ['c', 'cpp']) |
|
|
|
# Test the "normal" subproject call |
|
sub_pro = subproject('cmMod') |
|
sub_dep = sub_pro.get_variable('cmModLib_dep') |
|
|
|
# Test the dependency shortcut |
|
shortcut_dep = dependency('ttabadbneiobevn', fallback: ['cmMod', 'cmModLib_dep']) |
|
|
|
# Build some files |
|
exe1 = executable('main1', ['main.cpp'], dependencies: [sub_dep]) |
|
exe2 = executable('main2', ['main.cpp'], dependencies: [shortcut_dep]) |
|
test('test1', exe1) |
|
test('test2', exe2) |
|
|
|
# Test if we can also extract executables |
|
test('test3', sub_pro.get_variable('testEXE'))
|
|
|