summaryrefslogtreecommitdiff
path: root/test cases/python3/3 cython/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/python3/3 cython/meson.build')
-rw-r--r--test cases/python3/3 cython/meson.build12
1 files changed, 12 insertions, 0 deletions
diff --git a/test cases/python3/3 cython/meson.build b/test cases/python3/3 cython/meson.build
new file mode 100644
index 000000000..2d5948e26
--- /dev/null
+++ b/test cases/python3/3 cython/meson.build
@@ -0,0 +1,12 @@
+project('cython', 'c',
+ default_options : ['warning_level=3'])
+
+cython = find_program('cython3')
+py3_dep = dependency('python3')
+
+subdir('libdir')
+
+test('cython tester',
+ find_program('cytest.py'),
+ env : ['PYTHONPATH=' + pydir]
+)