-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VCPKG: do not use bundled plog and SDL
Before, when using VCPKG for 3rd parties, the plog/SDL used were the ones we bundle and not the ones built by VCPKG as we intended
- Loading branch information
Showing
3 changed files
with
25 additions
and
20 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
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 |
---|---|---|
@@ -1,33 +1,33 @@ | ||
{ | ||
"builtin-baseline": "e60236ee051183f1122066bee8c54a0b47c43a60", | ||
"builtin-baseline": "80d54ff62d528339c626a6fbc3489a7f25956ade", | ||
"dependencies": [ | ||
"glm", | ||
"gtest", | ||
"plog", | ||
"zlib", | ||
{ | ||
"name": "sdl3", | ||
"version>=": "v3.1.6-preview#2", | ||
"version>=": "3.1.6-preview", | ||
"features": ["x11", "wayland", "alsa"], | ||
"default-features": false, | ||
"platform": "linux & !native" | ||
}, | ||
{ | ||
"name": "sdl3", | ||
"version>=": "v3.1.6-preview#2", | ||
"version>=": "3.1.6-preview", | ||
"features": ["x11","wayland", "alsa"], | ||
"platform": "linux & native" | ||
}, | ||
{ | ||
"name": "sdl3", | ||
"version>=": "v3.1.6-preview#2", | ||
"version>=": "3.1.6-preview", | ||
"platform": "!linux" | ||
} | ||
], | ||
"overrides": [ | ||
{ | ||
"name": "sdl3", | ||
"version": "v3.1.6-preview#2" | ||
"version": "3.1.6-preview" | ||
} | ||
] | ||
} |