summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/6 object library no dep/meson.build
blob: 65b8700b48d65abbaba3967bbf552bdea6751756 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)