summaryrefslogtreecommitdiff
path: root/test cases/python3/2 extmodule/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/python3/2 extmodule/meson.build')
-rw-r--r--test cases/python3/2 extmodule/meson.build14
1 files changed, 9 insertions, 5 deletions
diff --git a/test cases/python3/2 extmodule/meson.build b/test cases/python3/2 extmodule/meson.build
index 858bbea9f..92a12b259 100644
--- a/test cases/python3/2 extmodule/meson.build
+++ b/test cases/python3/2 extmodule/meson.build
@@ -3,10 +3,14 @@ project('Python extension module', 'c',
# Because Windows Python ships only with optimized libs,
# we must build this project the same way.
-py3_dep = dependency('python3')
+py3_dep = dependency('python3', required : false)
-subdir('ext')
+if py3_dep.found()
+ subdir('ext')
-test('extmod',
- find_program('blaster.py'),
- env : ['PYTHONPATH=' + pypathdir])
+ test('extmod',
+ find_program('blaster.py'),
+ env : ['PYTHONPATH=' + pypathdir])
+else
+ error('MESON_SKIP_TEST: Python3 libraries not found, skipping test.')
+endif