summaryrefslogtreecommitdiff
path: root/test cases/objc/1 simple/meson.build
blob: bb45839f184f0fa53a5d5221961721439773706b (plain)
1
2
3
4
5
6
7
8
project('objective c', 'objc', default_options: ['c_std=c99'])

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

exe = executable('prog', 'prog.m')
test('objctest', exe)