summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/15 object library advanced/meson.build
blob: 4009a0d145f83e507769be5040b081011dc5d02b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
project('cmake_object_lib_test', 'cpp', default_options: ['cpp_std=c++11'])

if meson.is_cross_build()
  error('MESON_SKIP_TEST this test does not cross compile correctly.')
endif

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)