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

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

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

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