blob: 34c11927300a2fed2fe70c3d728f9cd750b75c05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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',
)
|