aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2021-10-15 15:57:10 +0200
committerMartin Ridgers <[email protected]>2021-10-15 16:00:47 +0200
commitc4d6998546fc6ad15387a7f3acb0e66a6f02e476 (patch)
tree5f436ed93d96a7dfe2f3839d4a4e3fea2e5c9591 /xmake.lua
parentMoved Windows-only defines to the is("windows") xmake block (diff)
downloadzen-c4d6998546fc6ad15387a7f3acb0e66a6f02e476.tar.xz
zen-c4d6998546fc6ad15387a7f3acb0e66a6f02e476.zip
Disabled warning about missing initializers
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/xmake.lua b/xmake.lua
index 01b25d9d4..c5a5a934e 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -57,6 +57,7 @@ if is_os("linux") then
add_cxxflags("-Wno-unused-parameter")
add_cxxflags("-Wno-strict-aliasing")
add_cxxflags("-Wno-implicit-fallthrough")
+ add_cxxflags("-Wno-missing-field-initializers")
end
add_defines("USE_SENTRY=1")