diff options
Diffstat (limited to 'test cases/python3/4 custom target depends extmodule/ext/meson.build')
-rw-r--r-- | test cases/python3/4 custom target depends extmodule/ext/meson.build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test cases/python3/4 custom target depends extmodule/ext/meson.build b/test cases/python3/4 custom target depends extmodule/ext/meson.build new file mode 100644 index 0000000..5ccbe22 --- /dev/null +++ b/test cases/python3/4 custom target depends extmodule/ext/meson.build @@ -0,0 +1,6 @@ +subdir('lib') + +pylib = py3_mod.extension_module('tachyon', + 'tachyon_module.c', + dependencies : [libtachyon_dep, py3_dep], +) |