summaryrefslogtreecommitdiff
path: root/test cases/python/2 extmodule/ext/nested/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/python/2 extmodule/ext/nested/meson.build')
-rw-r--r--test cases/python/2 extmodule/ext/nested/meson.build17
1 files changed, 17 insertions, 0 deletions
diff --git a/test cases/python/2 extmodule/ext/nested/meson.build b/test cases/python/2 extmodule/ext/nested/meson.build
index 34c119273..4a7ec7675 100644
--- a/test cases/python/2 extmodule/ext/nested/meson.build
+++ b/test cases/python/2 extmodule/ext/nested/meson.build
@@ -13,3 +13,20 @@ py.install_sources(
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',
+)