blob: 9fa352520b883fd85a002c90cb253c2624614179 [file] [log] [blame]
project('foobar', 'c')
win = import('windows')
subdir('a')
subdir('b')
subdir('c')
subdir('exe3')
subdir('exe4')
main = win.compile_resources('rsrc.rc')
testa = executable('testa', 'verify.c', a)
testb = executable('testb', 'verify.c', b)
testc = executable('testc', 'verify.c', c)
testmain = executable('testmain', 'verify.c', main)
test('a', testa, args: 'a')
test('b', testb, args: 'b')
test('c', testc, args: 'c')
test('main', testmain, args: 'main')