aboutsummaryrefslogtreecommitdiff
path: root/test cases/python/7 install path/meson.build
blob: 4a7df7eca3e415b41ce537d6ca19484ab108c898 (plain)
1
2
3
4
5
6
7
8
9
10
project('install path',
  default_options: [
    'python.purelibdir=/pure',
    'python.platlibdir=/plat'
  ]
)

py = import('python').find_installation()
py.install_sources('test.py')
py.install_sources('test.py', pure: false)