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.
14 lines
367 B
14 lines
367 B
5 years ago
|
project('cmake_object_lib_test', 'cpp')
|
||
|
|
||
|
cm = import('cmake')
|
||
|
|
||
|
sub_pro = cm.subproject('cmObjLib')
|
||
|
sub_sha = sub_pro.dependency('lib_sha')
|
||
|
sub_sta = sub_pro.dependency('lib_sta')
|
||
|
|
||
|
exe_sha = executable('shared', ['main.cpp'], dependencies: [sub_sha])
|
||
|
exe_sta = executable('static', ['main.cpp'], dependencies: [sub_sta])
|
||
|
|
||
|
test('test1', exe_sha)
|
||
|
test('test1', exe_sta)
|