-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add vcpkg manifest file and mark vcpkg cmake variables as advanced
VCPKG manifest is intentionally kept under a separate folder titled `vcpkg` under the repository root for the following reasons: - CI uses different workflow w.r.t freeimage and freetype dependency which will conflict if the manifest file is present at root. - Helps organize any future vcpkg associated files into single location
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "forge", | ||
"version-string": "1.1.0", | ||
"supports": "x64", | ||
"dependencies": [ | ||
"boost-functional", | ||
"freetype", | ||
"freeimage", | ||
{ | ||
"name": "fontconfig", | ||
"platform": "!windows" | ||
}, | ||
"glfw3", | ||
"sdl2" | ||
] | ||
} |