diff options
| author | Dan Engelbrecht <[email protected]> | 2025-05-06 16:50:57 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-05-06 16:50:57 +0200 |
| commit | 6d9ff7e404a22ed1cc7e529cfa77ef7d593d9547 (patch) | |
| tree | 5cfea359c44b02fe72ab5b166e9b03900444fcba /src/zenserver/xmake.lua | |
| parent | cleanup changelog (diff) | |
| download | zen-6d9ff7e404a22ed1cc7e529cfa77ef7d593d9547.tar.xz zen-6d9ff7e404a22ed1cc7e529cfa77ef7d593d9547.zip | |
add sentry for zen command (#373)
* refactor sentry integration and add to zen command line tool
* move add_ldflags("-framework Security")
Diffstat (limited to 'src/zenserver/xmake.lua')
| -rw-r--r-- | src/zenserver/xmake.lua | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/zenserver/xmake.lua b/src/zenserver/xmake.lua index a3d7aa124..470fbd24e 100644 --- a/src/zenserver/xmake.lua +++ b/src/zenserver/xmake.lua @@ -28,8 +28,6 @@ target("zenserver") add_cxxflags("/bigobj") add_links("delayimp", "projectedfslib") add_ldflags("/delayload:ProjectedFSLib.dll") - - add_links("dbghelp", "winhttp", "version") -- for Sentry else remove_files("windows/**") end @@ -41,7 +39,6 @@ target("zenserver") add_ldflags("-framework Foundation") add_ldflags("-framework Security") add_ldflags("-framework SystemConfiguration") - add_syslinks("bsm") end add_options("compute") @@ -57,18 +54,6 @@ target("zenserver") "vcpkg::sol2" ) - if has_config("zensentry") then - add_packages("vcpkg::sentry-native") - end - - if is_plat("linux") then - -- As sentry_native uses symbols from breakpad_client, the latter must - -- be specified after the former with GCC-like toolchains. xmake however - -- is unaware of this and simply globs files from vcpkg's output. The - -- line below forces breakpad_client to be to the right of sentry_native - add_syslinks("breakpad_client") - end - -- to work around some unfortunate Ctrl-C behaviour on Linux/Mac due to -- our use of setsid() at startup we pass in `--no-detach` to zenserver -- ensure that it recieves signals when the user requests termination |