meson/test cases/python3/1 basic/meson.build

10 lines
140 B
Meson
Raw Normal View History

2016-02-13 03:12:18 +08:00
project('python sample', 'c')
py3 = find_program('python3')
main = files('prog.py')
test('toplevel', py3, args : main)
subdir('subdir')