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