meson.build 265 B

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