blob: 7fd5083eefe6ec96deeafa9c3f2477ae176b2fab (
plain)
1
2
3
4
5
6
7
8
9
10
|
project('git outcheckker', 'c')
sp = subproject('samplesubproject')
exe = executable('gitprog', 'prog.c',
include_directories : sp.get_variable('subproj_inc'),
link_with : sp.get_variable('subproj_lib'),
)
test('maintest', exe)
|