diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-02-12 21:12:18 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-02-21 14:52:36 +0200 |
| commit | a8120eb5195ed0e7b44662f107baa23dbbda73a9 (patch) | |
| tree | 7607667cd75d761b2d79a91ea49aac4649e88f99 /test cases/python3/1 basic/meson.build | |
| parent | d95a1085031fd1deb24e8f3232e9052e598b2b4e (diff) | |
| download | meson-a8120eb5195ed0e7b44662f107baa23dbbda73a9.tar.gz | |
Added plain Python sample project.
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') |
