Sign in
qemu
/
meson
/
refs/heads/cppmodules
/
.
/
test cases
/
python
/
3 cython
/
libdir
/
meson.build
blob: 2b6ebc7af64707777f892b31a27b85308aeee6cc [
file
] [
log
] [
blame
]
pyx_c
=
custom_target
(
'storer_pyx'
,
output
:
'storer_pyx.c'
,
input
:
'storer.pyx'
,
command
:
[
cython
,
'@INPUT@'
,
'-o'
,
'@OUTPUT@'
],
)
slib
=
py3
.
extension_module
(
'storer'
,
'storer.c'
,
pyx_c
,
dependencies
:
py3_dep
)
pydir
=
meson
.
current_build_dir
()