Sign in
qemu
/
meson
/
refs/heads/updatevs
/
.
/
test cases
/
objc
/
3 objc args
/
meson.build
blob: dd6f50990b31a114af00ee773f1f52c4c232f430 [
file
] [
log
] [
blame
]
project
(
'objective c args'
,
'objc'
)
if
get_option
(
'backend'
).
startswith
(
'vs'
)
error
(
'MESON_SKIP_TEST: objc is not supported by vs backend'
)
endif
exe
=
executable
(
'prog'
,
'prog.m'
,
objc_args
:
[
'-DMESON_TEST'
])
test
(
'objective c args'
,
exe
)