diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-10-07 21:49:34 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-07 21:49:34 +0300 |
| commit | 7ecdf5913058873f0e71af7d9e68ec6804569773 (patch) | |
| tree | 569a284ebcf06da994efe379ee2c1f01b6b5bc7b /test cases | |
| parent | 1f4cce86add495fb07ae9ace83907dbd1415dd68 (diff) | |
| parent | 411d6c8bc4919c28adfe5041a5576a937876ea29 (diff) | |
| download | meson-7ecdf5913058873f0e71af7d9e68ec6804569773.tar.gz | |
Merge pull request #865 from centricular/test-project-lang-arrays
Test arrays in languages for the project() method
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/common/1 trivial/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test cases/common/1 trivial/meson.build b/test cases/common/1 trivial/meson.build index 3f1453996..1f7b37564 100644 --- a/test cases/common/1 trivial/meson.build +++ b/test cases/common/1 trivial/meson.build @@ -1,5 +1,8 @@ # Comment on the first line -project('trivial test', 'c', meson_version : '>=0.27.0') +project('trivial test', + # Comment inside a function call + array for language list + ['c'], + meson_version : '>=0.27.0') #this is a comment sources = 'trivial.c' |
