Merge branch 'no-werror' into 'main'

Don't build tests with -Werror

See merge request wayland/wayland-protocols!381
This commit is contained in:
Nicolas Fella 2025-12-18 04:04:01 +00:00
commit 218e98cf97

View file

@ -108,7 +108,7 @@ foreach protocol_file : protocol_files
'-std=c99', '-std=c99',
'-pedantic', '-pedantic',
'-Wall', '-Wall',
'-Werror' ], ],
install: false, install: false,
) )
test(test_name, pedantic_test_executable) test(test_name, pedantic_test_executable)
@ -134,7 +134,6 @@ foreach protocol_file : protocol_files
dependencies: libwayland, dependencies: libwayland,
cpp_args: [ cpp_args: [
'-Wall', '-Wall',
'-Werror',
], ],
install: false, install: false,
) )