blob: 5f4d9fd836bad0c367adb2477e5013a253aecc94 (
plain)
1
2
3
4
5
6
7
8
9
|
project('foo', ['objc'])
if get_option('backend').startswith('vs')
error('MESON_SKIP_TEST: objc is not supported by vs backend')
endif
l = static_library('foo', 'foo.m')
foo_dep = declare_dependency(link_with : l)
|