summaryrefslogtreecommitdiffstats
path: root/test cases/windows/15 resource scripts with duplicate filenames/meson.build
blob: 9fa352520b883fd85a002c90cb253c2624614179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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')