aboutsummaryrefslogtreecommitdiff
path: root/src/zen/xmake.lua
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2025-05-06 16:50:57 +0200
committerGitHub Enterprise <[email protected]>2025-05-06 16:50:57 +0200
commit6d9ff7e404a22ed1cc7e529cfa77ef7d593d9547 (patch)
tree5cfea359c44b02fe72ab5b166e9b03900444fcba /src/zen/xmake.lua
parentcleanup changelog (diff)
downloadarchived-zen-6d9ff7e404a22ed1cc7e529cfa77ef7d593d9547.tar.xz
archived-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/zen/xmake.lua')
-rw-r--r--src/zen/xmake.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/zen/xmake.lua b/src/zen/xmake.lua
index 78b2a3c2b..bf595a21d 100644
--- a/src/zen/xmake.lua
+++ b/src/zen/xmake.lua
@@ -18,13 +18,15 @@ target("zen")
add_ldflags("/subsystem:console,5.02")
add_ldflags("/LTCG")
add_links("crypt32", "wldap32", "Ws2_32")
+
+ add_links("dbghelp", "winhttp", "version") -- for Sentry
end
if is_plat("macosx") then
add_ldflags("-framework CoreFoundation")
+ add_ldflags("-framework Foundation")
add_ldflags("-framework Security")
add_ldflags("-framework SystemConfiguration")
- add_syslinks("bsm")
end
add_packages("vcpkg::cpr", "vcpkg::cxxopts", "vcpkg::mimalloc", "vcpkg::fmt")