diff options
| author | Stefan Boberg <[email protected]> | 2021-09-06 21:44:42 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-06 21:45:52 +0200 |
| commit | 6ce7b4b6cfb754a12304fbd88ec2a268eea5a372 (patch) | |
| tree | e0a9d7be7c491ef7556bcdfad6a1a695ad918cda /zencore/xmake.lua | |
| parent | Merge branch 'main' of https://github.com/EpicGames/zen (diff) | |
| download | zen-6ce7b4b6cfb754a12304fbd88ec2a268eea5a372.tar.xz zen-6ce7b4b6cfb754a12304fbd88ec2a268eea5a372.zip | |
Restructured xmake files
Mostly: moved dependencies to the module which introduces them
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") |