blob: 579308c6695b959ca5bb411e2b680868c8efe850 [file] [log] [blame]
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)