blob: 20d9db10cf4fc4180c72f1c2923fec3cd2fb1d12 (
plain)
1
2
3
4
5
|
exe = executable('prog', 'prog.c', 'func.c', include_directories : inc)
test('inc test', exe)
exe2 = executable('prog2', 'prog.c', 'func.c', include_directories : '../include')
test('inc test 2', exe2)
|