From fb1f6b878cbaf718475e2a104ceae8b4a2bf6ba8 Mon Sep 17 00:00:00 2001 From: Li Yanxu Date: Wed, 15 Jan 2025 22:45:47 +0800 Subject: [PATCH] feature: add vcpkg support --- vcpkg-configuration.json | 14 ++++++++++++++ vcpkg.json | 23 +++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 vcpkg-configuration.json create mode 100644 vcpkg.json diff --git a/vcpkg-configuration.json b/vcpkg-configuration.json new file mode 100644 index 0000000..6450701 --- /dev/null +++ b/vcpkg-configuration.json @@ -0,0 +1,14 @@ +{ + "default-registry": { + "kind": "git", + "baseline": "d7112d1a4fb50410d3639f5f586972591d848beb", + "repository": "https://github.com/microsoft/vcpkg" + }, + "registries": [ + { + "kind": "artifact", + "location": "https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip", + "name": "microsoft" + } + ] +} diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6156b75 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,23 @@ +{ + "dependencies": [ + "boost-filesystem", + "boost-optional", + "cppcodec", + "draco", + "fmt", + "libiconv", + "libxml2", + "nlohmann-fifo-map", + "zlib" + ], + "overrides": [ + { + "name": "fmt", + "version": "5.3.0" + }, + { + "name": "libiconv", + "version": "1.15-6" + } + ] +}