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.
12 lines
298 B
12 lines
298 B
genbin = find_program('compiler.py') |
|
|
|
gen = generator(genbin, |
|
output : ['@BASENAME@.h', '@BASENAME@.c'], |
|
arguments : ['@INPUT@', '@BUILD_DIR@'] |
|
) |
|
|
|
defs = ['foo1.def', 'foo2.def'] |
|
generated = gen.process(defs) |
|
|
|
stlib = static_library('st', generated) |
|
st_priv_inc = stlib.private_dir_include()
|
|
|