From 094bd62bd2e6ada15480fa1c97b056748ecd45b9 Mon Sep 17 00:00:00 2001 From: "Dr. Patrick Urbanke" Date: Tue, 18 Mar 2025 03:40:30 +0100 Subject: [PATCH] Added vcpkg --- .gitignore | 2 ++ vcpkg | 1 + vcpkg-configuration.json | 14 ++++++++++++++ vcpkg.json | 12 ++++++++++++ 4 files changed, 29 insertions(+) create mode 160000 vcpkg create mode 100644 vcpkg-configuration.json create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index 259148f..981fec2 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,5 @@ *.exe *.out *.app + +vcpkg_installed/ diff --git a/vcpkg b/vcpkg new file mode 160000 index 0000000..043abf2 --- /dev/null +++ b/vcpkg @@ -0,0 +1 @@ +Subproject commit 043abf2fa419c288d594a6b96b98a811457bd9b5 diff --git a/vcpkg-configuration.json b/vcpkg-configuration.json new file mode 100644 index 0000000..c05bfd1 --- /dev/null +++ b/vcpkg-configuration.json @@ -0,0 +1,14 @@ +{ + "default-registry": { + "kind": "git", + "baseline": "043abf2fa419c288d594a6b96b98a811457bd9b5", + "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..bb091b0 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,12 @@ +{ + "dependencies": [ + { + "name": "reflectcpp", + "version>=": "0.18.0" + }, + { + "name": "sqlite3", + "version>=": "3.49.1" + } + ] +}