Silence C warnings

-w got lost in the port from Autotools to Vala. We shouldn't emit C
compiler warnings because this isn't a C project.
This commit is contained in:
Michael Catanzaro 2024-07-08 08:27:12 -05:00
parent f87b61a4f5
commit b2b8901b94
4 changed files with 4 additions and 0 deletions

View file

@ -11,6 +11,7 @@ libengine_vala_args = [
libengine_c_args = [
'-include', 'config.h',
'-w'
]
libengine_deps = [

View file

@ -16,6 +16,7 @@ libchess_vala_args = [
libchess_c_args = [
'-include', 'config.h',
'-w'
]
libchess_deps = [

View file

@ -18,6 +18,7 @@ chess_vala_args = [
chess_c_args = [
'-include', 'config.h',
'-w'
]
chess_deps = [

View file

@ -9,6 +9,7 @@ tests_vala_args = [
tests_c_args = [
'-include', 'config.h',
'-w'
]
tests_deps = [