diff options
| author | Martin Ridgers <[email protected]> | 2021-10-15 15:57:10 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-10-15 16:00:47 +0200 |
| commit | c4d6998546fc6ad15387a7f3acb0e66a6f02e476 (patch) | |
| tree | 5f436ed93d96a7dfe2f3839d4a4e3fea2e5c9591 /xmake.lua | |
| parent | Moved Windows-only defines to the is("windows") xmake block (diff) | |
| download | zen-c4d6998546fc6ad15387a7f3acb0e66a6f02e476.tar.xz zen-c4d6998546fc6ad15387a7f3acb0e66a6f02e476.zip | |
Disabled warning about missing initializers
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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") |