diff options
| author | Stefan Boberg <[email protected]> | 2021-09-06 21:44:42 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-06 21:44:42 +0200 |
| commit | f39e1c21ee95fea4bbbdbff999b7d97001a8c604 (patch) | |
| tree | ca121535f425f1a581099d3dcdda8f5375eef1d4 /zencore/xmake.lua | |
| parent | Merge branch 'cbpackage-update' of https://github.com/EpicGames/zen into cbpa... (diff) | |
| download | zen-f39e1c21ee95fea4bbbdbff999b7d97001a8c604.tar.xz zen-f39e1c21ee95fea4bbbdbff999b7d97001a8c604.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") |