From 2c2fed879661edd9f0f2d925f16a37142db4743a Mon Sep 17 00:00:00 2001 From: im-tem Date: Mon, 30 Jun 2025 14:56:56 +0300 Subject: [PATCH] win_build: vcpkg set-up --- .gitignore | 1 + vcpkg-configuration.json | 14 ++++++++++++++ vcpkg.json | 6 ++++++ 3 files changed, 21 insertions(+) create mode 100644 vcpkg-configuration.json create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a700a49..12a4609 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ build/ concept/ packed/ +vcpkg_installed/ diff --git a/vcpkg-configuration.json b/vcpkg-configuration.json new file mode 100644 index 0000000..0f3f891 --- /dev/null +++ b/vcpkg-configuration.json @@ -0,0 +1,14 @@ +{ + "default-registry": { + "kind": "git", + "baseline": "4f8fe05871555c1798dbcb1957d0d595e94f7b57", + "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..2b13cf3 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "sdl3", + "glew" + ] +}