blob: e41d1b735d6076bc94ff4b810025a07d831a3a70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
project('cython_args', ['cython', 'c'])
pymod = import('python')
python = pymod.find_installation('python3')
python_dep = python.dependency()
if not python_dep.found()
error('MESON_SKIP_TEST: Python library not found.')
endif
mod = python.extension_module(
'cythonargs',
files('cythonargs.pyx'),
cython_args: [
'--compile-time-env',
'VALUE=1'
],
dependencies: [python_dep]
)
test(
'test',
python,
args: [
'test.py'
],
workdir: meson.current_source_dir(),
env: environment({
'PYTHONPATH': meson.current_build_dir(),
})
)
|