aboutsummaryrefslogtreecommitdiff
path: root/test cases/23 global arg/builder.txt
blob: 8a2b2a0aeb3b5effbee38ba9c6a3593460f8d014 (plain)
1
2
3
4
5
6
7
8
9
10
11
project('global arg test', 'cxx', 'c')

add_global_arguments('c', '-DMYTHING')
add_global_arguments('cxx', '-DMYCXXTHING')

exe1 = executable('prog', 'prog.c')
exe2 = executable('prog2', 'prog.cc')

add_test('prog1', exe1)
add_test('prog2', exe2)