diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2023-03-27 21:08:20 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2023-03-28 15:15:45 -0400 |
commit | 9d98b4cb840e692808a89f7c6f193215ae37f4b8 (patch) | |
tree | 47f7b076d99865aadcb8e9ffe0acce06ef0a1060 /test cases | |
parent | 728c8dce245a4df095e5acab42db769d79efd1ba (diff) | |
download | meson-9d98b4cb840e692808a89f7c6f193215ae37f4b8.zip meson-9d98b4cb840e692808a89f7c6f193215ae37f4b8.tar.gz meson-9d98b4cb840e692808a89f7c6f193215ae37f4b8.tar.bz2 |
test that python modules nominally compile without warnings
Because we poke around with the dependency, so we might introduce some,
and have at least once.
Diffstat (limited to 'test cases')
-rw-r--r-- | test cases/python/2 extmodule/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/python/2 extmodule/meson.build b/test cases/python/2 extmodule/meson.build index 239492c..8332afd 100644 --- a/test cases/python/2 extmodule/meson.build +++ b/test cases/python/2 extmodule/meson.build @@ -1,5 +1,5 @@ project('Python extension module', 'c', - default_options : ['buildtype=release']) + default_options : ['buildtype=release', 'werror=true']) # Because Windows Python ships only with optimized libs, # we must build this project the same way. |