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.

18 lines
340 B

project('cython', 'c',
default_options : ['warning_level=3'])
cython = find_program('cython3', required : false)
if cython.found()
py3_dep = dependency('python3')
subdir('libdir')
test('cython tester',
find_program('cytest.py'),
env : ['PYTHONPATH=' + pydir]
)
else
message('Cython not found, skipping test.')
endif