The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
219 B
11 lines
219 B
4 years ago
|
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()
|