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.
 
 
 
 
 
 

32 lines
682 B

py.extension_module('tachyon',
'../tachyon_module.c',
c_args: '-DMESON_MODULENAME="nested.tachyon"',
install: true,
subdir: 'nested'
)
py.install_sources(
configure_file(
input: '../../blaster.py.in',
output: 'blaster.py',
configuration: {'tachyon_module': 'nested.tachyon'}
),
pure: false,
subdir: 'nested',
)
py2.extension_module('tachyon',
'../tachyon_module.c',
c_args: '-DMESON_MODULENAME="nested.tachyon"',
install: true,
subdir: 'nested'
)
py2.install_sources(
configure_file(
input: '../../blaster.py.in',
output: 'blaster.py',
configuration: {'tachyon_module': 'nested.tachyon'}
),
pure: false,
subdir: 'nested',
)