summaryrefslogtreecommitdiff
path: root/test cases/python3/2 extmodule/ext/meson.build
blob: 04c0592c2824d1c009fce0cb1bf020620d083846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if host_machine.system() == 'darwin'
  # Default suffix is 'dylib' but Python does not use for extensions.
  suffix = 'so'
else
  suffix = []
endif

pylib = shared_library('tachyon',
  'tachyon_module.c',
  dependencies : py3_dep,
  name_prefix : '',
  name_suffix : suffix)

pypathdir = meson.current_build_dir()