aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-10-26 11:46:01 +0100
committerStefan Boberg <[email protected]>2025-10-26 11:46:01 +0100
commitd64002279048c557e0e5e4498c3cd1abf68c2d02 (patch)
tree7e0b4145007de2259b982bc7dadc913fdf9d13f8 /src
parenttry 2.9.9 since that release contains a newer fix (diff)
downloadzen-d64002279048c557e0e5e4498c3cd1abf68c2d02.tar.xz
zen-d64002279048c557e0e5e4498c3cd1abf68c2d02.zip
in-tree: EASTL (zen-repo package)
Diffstat (limited to 'src')
-rw-r--r--src/zencore/xmake.lua2
-rw-r--r--src/zenremotestore/xmake.lua2
-rw-r--r--src/zenstore/xmake.lua2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/zencore/xmake.lua b/src/zencore/xmake.lua
index 00457fc2f..84f749352 100644
--- a/src/zencore/xmake.lua
+++ b/src/zencore/xmake.lua
@@ -42,7 +42,7 @@ target('zencore')
)
add_packages(
- "vcpkg::eastl",
+ "eastl",
"lz4",
"xxhash",
{public=true}
diff --git a/src/zenremotestore/xmake.lua b/src/zenremotestore/xmake.lua
index 9666aeb60..ea126f345 100644
--- a/src/zenremotestore/xmake.lua
+++ b/src/zenremotestore/xmake.lua
@@ -7,4 +7,4 @@ target('zenremotestore')
add_files("**.cpp")
add_includedirs("include", {public=true})
add_deps("zencore", "zenstore", "zenutil", "robin-map", "json11")
- add_packages("vcpkg::eastl", {public=true});
+ add_packages("eastl", {public=true});
diff --git a/src/zenstore/xmake.lua b/src/zenstore/xmake.lua
index ec8125a23..31289a573 100644
--- a/src/zenstore/xmake.lua
+++ b/src/zenstore/xmake.lua
@@ -8,4 +8,4 @@ target('zenstore')
add_includedirs("include", {public=true})
add_deps("zencore", "zenutil", "zenvfs")
add_deps("robin-map")
- add_packages("vcpkg::eastl", {public=true});
+ add_packages("eastl", {public=true});