From 64c0dc839711266647507e957ad3175b45c4a82b Mon Sep 17 00:00:00 2001 From: shermp <14854761+shermp@users.noreply.github.com> Date: Mon, 22 Apr 2024 21:59:21 +1200 Subject: [PATCH] Add VCPKG manifest Allows for easy installation of SDL2 using MSVC --- vcpkg-configuration.json | 14 ++++++++++++++ vcpkg.json | 5 +++++ 2 files changed, 19 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 00000000..762a4ed6 --- /dev/null +++ b/vcpkg-configuration.json @@ -0,0 +1,14 @@ +{ + "default-registry": { + "kind": "git", + "baseline": "53bef8994c541b6561884a8395ea35715ece75db", + "repository": "https://github.com/microsoft/vcpkg" + }, + "registries": [ + { + "kind": "artifact", + "location": "https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip", + "name": "microsoft" + } + ] +} \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 00000000..60e4a26a --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "sdl2" + ] +} \ No newline at end of file