summaryrefslogtreecommitdiff
path: root/test cases/python3/1 basic/meson.build
blob: 9d5f874c63c6af44a652162fb4f677159ee36f5c (plain)
1
2
3
4
5
6
7
8
9
10
project('python sample', 'c')

py3_mod = import('python3')
py3 = py3_mod.find_python()

main = files('prog.py')

test('toplevel', py3, args : main)

subdir('subdir')