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.
16 lines
494 B
16 lines
494 B
6 years ago
|
project('cmake_object_lib_test', ['c', 'cpp'])
|
||
|
|
||
|
if build_machine.system() == 'windows'
|
||
|
error('MESON_SKIP_TEST: Windows is not supported because of symbol export problems')
|
||
|
endif
|
||
6 years ago
|
|
||
|
sub_pro = subproject('cmObjLib')
|
||
|
sub_sha = sub_pro.get_variable('lib_sha_dep')
|
||
|
sub_sta = sub_pro.get_variable('lib_sta_dep')
|
||
|
|
||
|
exe_sha = executable('shared', ['main.cpp'], dependencies: [sub_sha])
|
||
6 years ago
|
exe_sta = executable('static', ['main.cpp'], dependencies: [sub_sta])
|
||
6 years ago
|
|
||
|
test('test1', exe_sha)
|
||
|
test('test1', exe_sta)
|