summaryrefslogtreecommitdiff
path: root/test cases/python/3 cython/libdir/meson.build
blob: d148b00a703ed0e149eb4c9f8488a6934c6864a0 (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@', '-3'],
)

slib = py3.extension_module('storer',
  'storer.c', pyx_c,
)

pydir = meson.current_build_dir()