Files
meson/test cases/objcpp/2 objc++ args/meson.build
Dylan Baker 0ec7dd5ac5 tests: Split objc and objc++ tests
This allows platforms that can compile one or the other (but not both)
to run the tests that they can.
2018-01-06 13:49:34 -08:00

5 lines
148 B
Meson

project('objective c++ args', 'objcpp')
exe = executable('prog', 'prog.mm', objcpp_args : ['-DMESON_OBJCPP_TEST'])
test('objective c++ args', exe)