summaryrefslogtreecommitdiff
path: root/test cases/python/2 extmodule/ext/nested/meson.build
blob: 38d3d3e28bcffad6977211c209f3b2a01ba7e31d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
py.extension_module('tachyon',
  '../tachyon_module.c',
  dependencies : py_dep,
  c_args: '-DMESON_MODULENAME="nested.tachyon"',
  install: true,
  subdir: 'nested'
)
py.install_sources(
  configure_file(
    input: '../../blaster.py.in',
    output: 'blaster.py',
    configuration: {'tachyon_module': 'nested.tachyon'}
  ),
  pure: false,
  subdir: 'nested',
)