blob: e9259bdad0ee92faf3b1a77fa27b93f40250bed0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
ct2 = custom_target(
'ct2',
input : 'gen.py',
output : 'ct2.pyx',
command : [py3, '@INPUT@', '@OUTPUT@'],
)
ct2_ext = py3.extension_module('ct2', ct2, dependencies : py3_dep)
pydir = meson.current_build_dir()
|