From aa89c2267a20e7c28b26ee7c56427d7cf2763d5a Mon Sep 17 00:00:00 2001 From: Corentin Jabot Date: Tue, 1 Jun 2021 13:35:51 +0200 Subject: [PATCH] Add a vcpkg manifest file --- README.md | 2 +- vcpkg | 2 +- vcpkg.json | 9 +++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 vcpkg.json diff --git a/README.md b/README.md index 83f86ee..a2d127f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ On windows, run `.\vcpkg\bootstrap-vcpkg.bat`. On other platforms, run `./vcpkg/bootstrap-vcpkg.sh` -On all platform run `./vcpkg/vcpkg install sdl2-image gtest` +Dependencies will be automatically when running CMake. ## Keep PacMan Score diff --git a/vcpkg b/vcpkg index 5a271a9..7bc5b8c 160000 --- a/vcpkg +++ b/vcpkg @@ -1 +1 @@ -Subproject commit 5a271a9290282e09149401486f88dc106dc65b71 +Subproject commit 7bc5b8cdfaf35329c1520b2af8d368e2b1cb78e6 diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..822f05d --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json", + "name": "pacman", + "version": "0.1", + "dependencies": [ + "sdl2-image", + "gtest" + ] +} \ No newline at end of file