aboutsummaryrefslogtreecommitdiff
path: root/zencore/xmake.lua
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-07 09:58:17 +0200
committerStefan Boberg <[email protected]>2021-09-07 09:58:17 +0200
commitb84d6418446ad9e22be72468c32a4ab2003b08c0 (patch)
treeccd5d3726d85b3137b020baf4478d96c5552baa5 /zencore/xmake.lua
parentCleaned up sentry integration somewhat, to make it easier to enable/disable a... (diff)
parentRestructured xmake files (diff)
downloadzen-b84d6418446ad9e22be72468c32a4ab2003b08c0.tar.xz
zen-b84d6418446ad9e22be72468c32a4ab2003b08c0.zip
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'zencore/xmake.lua')
-rw-r--r--zencore/xmake.lua12
1 files changed, 11 insertions, 1 deletions
diff --git a/zencore/xmake.lua b/zencore/xmake.lua
index 39eb4590e..5de7f476d 100644
--- a/zencore/xmake.lua
+++ b/zencore/xmake.lua
@@ -3,4 +3,14 @@ target('zencore')
add_files("**.cpp")
add_includedirs("include", {public=true})
add_includedirs("..\\3rdparty\\utfcpp\\source")
-
+ add_linkdirs("$(projectdir)/3rdparty/BLAKE3/lib/Win64", "$(projectdir)/3rdparty/Oodle/lib/Win64")
+ add_packages(
+ "vcpkg::spdlog",
+ "vcpkg::fmt",
+ "vcpkg::doctest",
+ "vcpkg::lz4",
+ "vcpkg::cpr",
+ "vcpkg::curl", -- required by cpr
+ "vcpkg::zlib", -- required by curl
+ "vcpkg::xxhash",
+ "vcpkg::gsl-lite")