22 lines
594 B
Meson
22 lines
594 B
Meson
project('cmake_object_lib_test', ['c', 'cpp'])
|
|
|
|
dep_test = dependency('ZLIB', method: 'cmake', required: false)
|
|
if not dep_test.found()
|
|
error('MESON_SKIP_TEST: zlib is not installed')
|
|
endif
|
|
|
|
cm = import('cmake')
|
|
|
|
sub_pro = cm.subproject('cmObjLib')
|
|
sub_sha = sub_pro.dependency('lib_sha')
|
|
sub_sta = sub_pro.dependency('lib_sta')
|
|
|
|
# Required for the static library
|
|
zlib_dep = dependency('zlib')
|
|
|
|
exe_sha = executable('shared', ['main.cpp'], dependencies: [sub_sha])
|
|
exe_sta = executable('static', ['main.cpp'], dependencies: [sub_sta, zlib_dep])
|
|
|
|
test('test1', exe_sha)
|
|
test('test1', exe_sta)
|