summaryrefslogtreecommitdiff
path: root/test cases/python/2 extmodule/ext/wrongdir/meson.build
blob: 79b13eb778d3cfe17cabc518bc64f088f9d41374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
py.extension_module('tachyon',
  '../tachyon_module.c',
  c_args: '-DMESON_MODULENAME="tachyon"',
  install: true,
  install_dir: get_option('libdir')
)
py2.extension_module('tachyon',
  '../tachyon_module.c',
  c_args: '-DMESON_MODULENAME="tachyon"',
  install: true,
  install_dir: get_option('libdir')
)