meson.build 314 B

12345678910111213
  1. project('Python extension module', 'c',
  2. default_options : ['buildtype=release'])
  3. # Because Windows Python ships only with optimized libs,
  4. # we must build this project the same way.
  5. py3_dep = dependency('python3')
  6. subdir('ext')
  7. test('extmod',
  8. find_program('blaster.py'),
  9. env : ['PYTHONPATH=' + pypathdir])