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.
27 lines
921 B
27 lines
921 B
8 years ago
|
gen = files('manygen.py')
|
||
|
py3_bin = import('python3').find_python()
|
||
9 years ago
|
|
||
8 years ago
|
buildtype = get_option('buildtype')
|
||
|
buildtype_args = '-Dfooxxx' # a useless compiler argument
|
||
6 years ago
|
cc = meson.get_compiler('c')
|
||
|
if cc.get_argument_syntax() == 'msvc'
|
||
8 years ago
|
# We need our manually generated code to use the same CRT as the executable.
|
||
|
# Taken from compilers.py since build files do not have access to this.
|
||
|
if buildtype == 'debug'
|
||
|
buildtype_args = '/MDd'
|
||
|
elif buildtype == 'debugoptimized'
|
||
|
buildtype_args = '/MDd'
|
||
|
elif buildtype == 'release'
|
||
|
buildtype_args = '/MD'
|
||
|
endif
|
||
9 years ago
|
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
|
||
|
|
||
9 years ago
|
generated = custom_target('manygen',
|
||
9 years ago
|
output : outfiles,
|
||
9 years ago
|
input : ['funcinfo.def'],
|
||
6 years ago
|
command : [py3_bin, gen[0], '@INPUT@', '@OUTDIR@', buildtype_args, cc.get_argument_syntax(), cc.cmd_array()],
|
||
9 years ago
|
)
|