-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cython_args was previoously ignored by Meson.
- Loading branch information
1 parent
2647f18
commit caa5220
Showing
4 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
def test(): | ||
IF VALUE: | ||
return 1 | ||
ELSE: | ||
return 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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(), | ||
}) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import cythonargs | ||
|
||
assert cythonargs.test() == 1 |