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.
31 lines
869 B
31 lines
869 B
project('object generator', 'c') |
|
|
|
python = find_program('python3') |
|
|
|
# Note that this will not add a dependency to the compiler executable. |
|
# Code will not be rebuilt if it changes. |
|
comp = '@0@/@1@'.format(meson.current_source_dir(), 'obj_generator.py') |
|
|
|
if host_machine.system() == 'windows' |
|
outputname = '@BASENAME@.obj' |
|
else |
|
outputname = '@BASENAME@.o' |
|
endif |
|
|
|
cc = meson.get_compiler('c').cmd_array().get(-1) |
|
# Generate an object file manually. |
|
gen = generator(python, |
|
output : outputname, |
|
arguments : [comp, cc, '@INPUT@', '@OUTPUT@']) |
|
|
|
generated = gen.process(['source.c', 'source2.c']) |
|
|
|
# Generate an object file with indexed OUTPUT replacement. |
|
gen2 = generator(python, |
|
output : outputname, |
|
arguments : [comp, cc, '@INPUT@', '@OUTPUT0@']) |
|
generated2 = gen2.process(['source3.c']) |
|
|
|
e = executable('prog', 'prog.c', generated, generated2) |
|
|
|
test('objgen', e) |