diff options
Diffstat (limited to 'test cases/python3/1 basic/meson.build')
| -rw-r--r-- | test cases/python3/1 basic/meson.build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/python3/1 basic/meson.build b/test cases/python3/1 basic/meson.build new file mode 100644 index 000000000..badd3e58c --- /dev/null +++ b/test cases/python3/1 basic/meson.build @@ -0,0 +1,9 @@ +project('python sample', 'c') + +py3 = find_program('python3') + +main = files('prog.py') + +test('toplevel', py3, args : main) + +subdir('subdir') |
