summaryrefslogtreecommitdiff
path: root/tests/projects
diff options
context:
space:
mode:
authorruki <[email protected]>2021-12-21 22:50:26 +0800
committerruki <[email protected]>2021-12-21 22:50:26 +0800
commitce000fa3f72ea6c4ca684a3d08b1e6cf09f5fb68 (patch)
treebd5b5b024372040b144ebbef24ad424e24f4187b /tests/projects
parenta1abfda3ca119979f541876355471b026abcc3f9 (diff)
improve to vcpkg.find_package for manifest
Diffstat (limited to 'tests/projects')
-rw-r--r--tests/projects/package/vcpkg_manifest/xmake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/package/vcpkg_manifest/xmake.lua b/tests/projects/package/vcpkg_manifest/xmake.lua
index a6b24f1bc..5c08f2869 100644
--- a/tests/projects/package/vcpkg_manifest/xmake.lua
+++ b/tests/projects/package/vcpkg_manifest/xmake.lua
@@ -1,9 +1,9 @@
add_requires("vcpkg::zlib 1.2.11")
add_requires("vcpkg::fmt >=8.0.1", {configs = {baseline = "50fd3d9957195575849a49fa591e645f1d8e7156"}})
-add_requires("vcpkg::arrow", {configs = {features = {"json"}}})
+add_requires("vcpkg::libpng", {configs = {features = {"apng"}}})
target("test")
set_kind("binary")
add_files("src/*.cpp")
- add_packages("vcpkg::zlib", "vcpkg::fmt", "vcpkg::arrow")
+ add_packages("vcpkg::zlib", "vcpkg::fmt", "vcpkg::libpng")