diff options
| author | Stefan Boberg <[email protected]> | 2021-09-07 09:58:17 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-07 09:58:17 +0200 |
| commit | b84d6418446ad9e22be72468c32a4ab2003b08c0 (patch) | |
| tree | ccd5d3726d85b3137b020baf4478d96c5552baa5 /zencore/xmake.lua | |
| parent | Cleaned up sentry integration somewhat, to make it easier to enable/disable a... (diff) | |
| parent | Restructured xmake files (diff) | |
| download | zen-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.lua | 12 |
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") |