diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-10-08 00:56:33 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-10-14 19:13:21 +0530 |
commit | 5dcb8daaf34e35fdd9d4530c9b3dc95b3a4ea417 (patch) | |
tree | 64b3325613319ee7faf417dc4ad05e4da8e18b64 | |
parent | 4332df01b86d5648c83498561572161d1f50e4cd (diff) | |
download | meson-5dcb8daaf34e35fdd9d4530c9b3dc95b3a4ea417.zip meson-5dcb8daaf34e35fdd9d4530c9b3dc95b3a4ea417.tar.gz meson-5dcb8daaf34e35fdd9d4530c9b3dc95b3a4ea417.tar.bz2 |
vala tests: Test no-warnings code with werror in default_options
If the no-warnings code is working properly, -Werror will do nothing
because there's no warnings to error out with.
-rw-r--r-- | test cases/vala/5 target glib/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/vala/5 target glib/meson.build b/test cases/vala/5 target glib/meson.build index 1002abe..679e908 100644 --- a/test cases/vala/5 target glib/meson.build +++ b/test cases/vala/5 target glib/meson.build @@ -1,4 +1,4 @@ -project('valatest', 'vala', 'c') +project('valatest', 'vala', 'c', default_options : ['werror=true']) valadeps = [dependency('glib-2.0', version : '>=2.32'), dependency('gobject-2.0')] |