summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/18 skip include files/meson.build
blob: b9a300c9307d4af6d79e63372f845f1df6ce23f5 (plain)
1
2
3
4
5
6
7
8
9
project('cmakeSubTest', ['c', 'cpp'])

cm = import('cmake')

sub_pro = cm.subproject('cmMod')
sub_dep = sub_pro.dependency('cmModLib++')

exe1 = executable('main', ['main.cpp'], dependencies: [sub_dep])
test('test1', exe1)