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.
16 lines
339 B
16 lines
339 B
3 years ago
|
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',
|
||
|
)
|