The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
327 B
14 lines
327 B
5 years ago
|
project('custom target input extracted objects', 'c')
|
||
|
|
||
|
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)
|