Add a vcpkg manifest file

This commit is contained in:
Corentin Jabot 2021-06-01 13:35:51 +02:00
parent 335a698226
commit aa89c2267a
3 changed files with 11 additions and 2 deletions

View File

@ -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

2
vcpkg

@ -1 +1 @@
Subproject commit 5a271a9290282e09149401486f88dc106dc65b71
Subproject commit 7bc5b8cdfaf35329c1520b2af8d368e2b1cb78e6

9
vcpkg.json Normal file
View File

@ -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"
]
}