summaryrefslogtreecommitdiff
path: root/test cases/objcpp/1 simple/meson.build
blob: c3acc879ad1e23dfb746172748b4cc92393695ce (plain)
1
2
3
4
5
6
7
8
project('Objective C++', 'objcpp', default_options: 'cpp_std=c++14')

if get_option('backend').startswith('vs')
  error('MESON_SKIP_TEST: objcpp is not supported by vs backend')
endif

exe = executable('objcppprog', 'prog.mm')
test('objcpp', exe)