1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
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, '1', '@OUTPUT@', '@INPUT@'],
build_by_default: true)
custom_target('checkct',
input: objlib.extract_objects(ctsrc),
output: 'objcheck-ct',
command: [checker, '1', '@OUTPUT@', '@INPUT@'],
build_by_default: true)
custom_target('checkcti',
input: objlib.extract_objects(ctsrc[0]),
output: 'objcheck-cti',
command: [checker, '1', '@OUTPUT@', '@INPUT@'],
build_by_default: true)
custom_target('checkgen',
input: objlib.extract_objects(gensrc),
output: 'objcheck-gen',
command: [checker, '1', '@OUTPUT@', '@INPUT@'],
build_by_default: true)
custom_target('checkall',
input: objlib.extract_all_objects(recursive: false),
output: 'objcheck-all',
command: [checker, '3', '@OUTPUT@', '@INPUT@'],
build_by_default: true)
custom_target('checkall-recursive',
input: objlib.extract_all_objects(recursive: true),
output: 'objcheck-all-recursive',
command: [checker, '4', '@OUTPUT@', '@INPUT@'],
build_by_default: true)
|