1pyx_c = custom_target('storer_pyx',
2  output : 'storer_pyx.c',
3  input : 'storer.pyx',
4  command : [cython, '@INPUT@', '-o', '@OUTPUT@'],
5)
6
7slib = py3.extension_module('storer',
8  'storer.c', pyx_c,
9  dependencies : py3_dep)
10
11pydir = meson.current_build_dir()
12