diff options
| author | Stefan Boberg <[email protected]> | 2026-03-04 17:23:36 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-03-04 17:23:36 +0100 |
| commit | 1f83b48a20bf90f41e18867620c5774f3be6280d (patch) | |
| tree | ad2b948dfd64ff55249a361ba018e6771de041d7 /thirdparty | |
| parent | more feedback during auth option parsing (#806) (diff) | |
| download | zen-1f83b48a20bf90f41e18867620c5774f3be6280d.tar.xz zen-1f83b48a20bf90f41e18867620c5774f3be6280d.zip | |
Fixing various compiler issues (#807)
Compile fixes for various versions of gcc,clang (non-UE)
Diffstat (limited to 'thirdparty')
| -rw-r--r-- | thirdparty/xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/xmake.lua b/thirdparty/xmake.lua index 7c99d910e..a4a183910 100644 --- a/thirdparty/xmake.lua +++ b/thirdparty/xmake.lua @@ -66,7 +66,7 @@ target('cpr') if is_os("windows") then add_cxxflags("/wd4668") else - add_cxxflags("-Wno-undef") + add_cxxflags("-Wno-undef", "-Wno-deprecated-declarations") end add_packages("libcurl", {public=true}) |