diff options
Diffstat (limited to 'meson/test cases/python3/4 custom target depends extmodule/ext/meson.build')
-rw-r--r-- | meson/test cases/python3/4 custom target depends extmodule/ext/meson.build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meson/test cases/python3/4 custom target depends extmodule/ext/meson.build b/meson/test cases/python3/4 custom target depends extmodule/ext/meson.build new file mode 100644 index 000000000..5ccbe223c --- /dev/null +++ b/meson/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], +) |