blob: 8797b619d3e86a22eae4888903c0aecfb23ee359 (
plain)
1
2
3
4
5
6
7
8
|
project('objective c++ args', 'objcpp')
if get_option('backend').startswith('vs')
error('MESON_SKIP_TEST: objcpp is not supported by vs backend')
endif
exe = executable('prog', 'prog.mm', objcpp_args : ['-DMESON_OBJCPP_TEST'])
test('objective c++ args', exe)
|