aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorPer Larsson <[email protected]>2021-09-20 08:54:34 +0200
committerPer Larsson <[email protected]>2021-09-20 08:54:34 +0200
commite25b4b20d8a5696aa7055c9c167fa47b3739bc7e (patch)
tree049654b87096a22e1bf696a385db608a75f229fa /xmake.lua
parentProbe upstream Zen server when initializing upstream cache. (diff)
parentFixed unused variable warnings exposed by xmake build (unclear why I do not r... (diff)
downloadzen-e25b4b20d8a5696aa7055c9c167fa47b3739bc7e.tar.xz
zen-e25b4b20d8a5696aa7055c9c167fa47b3739bc7e.zip
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmake.lua b/xmake.lua
index f5a37e12d..8288963e0 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -36,7 +36,7 @@ if is_mode("debug") then
end
if is_os("windows") then
- add_defines("_CRT_SECURE_NO_WARNINGS")
+ add_defines("_CRT_SECURE_NO_WARNINGS", "_UNICODE", "UNICODE", "_WIN32_WINNT=0x0A00")
end
add_defines("USE_SENTRY=1")
@@ -64,6 +64,7 @@ set_symbols("debug")
includes("zencore", "zencore-test")
includes("zenhttp")
-includes("zenstore", "zenutil")
+includes("zenstore", "zenstore-test")
+includes("zenutil")
includes("zenserver", "zenserver-test")
includes("zen")