blob: 8f8b22f23917d72089c3f0298e84938fd4f4438b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
project('custom target input extracted objects', 'c')
if meson.backend() == 'xcode'
error('MESON_SKIP_TEST: sometimes Xcode puts object files in weird paths and we can not extract them.')
endif
checker = find_program('check_object.py')
cc = meson.get_compiler('c').cmd_array().get(-1)
subdir('libdir')
custom_target('check',
input: objlib.extract_objects('source.c'),
output: 'objcheck',
command: [checker, '@INPUT@', '@OUTPUT@'],
build_by_default: true)
|