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.
13 lines
364 B
13 lines
364 B
gen = find_program('manygen.py') |
|
|
|
if meson.get_compiler('c').get_id() == 'msvc' |
|
outfiles = ['gen_func.lib', 'gen_func.c', 'gen_func.h', 'gen_func.o'] |
|
else |
|
outfiles = ['gen_func.a', 'gen_func.c', 'gen_func.h', 'gen_func.o'] |
|
endif |
|
|
|
generated = custom_target('manygen', |
|
output : outfiles, |
|
input : ['funcinfo.def'], |
|
command : [gen, '@INPUT@', '@OUTDIR@'], |
|
)
|
|
|