diff options
Diffstat (limited to 'src/zencore')
| -rw-r--r-- | src/zencore/xmake.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/zencore/xmake.lua b/src/zencore/xmake.lua index 19152cc97..24011d300 100644 --- a/src/zencore/xmake.lua +++ b/src/zencore/xmake.lua @@ -52,6 +52,12 @@ target('zencore') if has_config("zensentry") then add_packages("vcpkg::sentry-native") + if is_os("windows") then + add_cxxflags("/wd4996") + else + add_cxxflags("-Wno-deprecated-declarations") -- temporary workaround for sentry-native deprecation warnings + end + if is_plat("windows") then add_links("dbghelp", "winhttp", "version") -- for Sentry end |