blob: 2b6ebc7af64707777f892b31a27b85308aeee6cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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()
|