-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update vcpkg to 2024.02.14 Release A blank install of vcpkg did not work anymore due to changes in upstream repos. Had to update vcpkg.exe to latest to ensure download of libraries works as expected. Had to update baseline to 2024.02.14 to be able to compile on VS 17.12. A bug related to naming of boost was fixed in boost 1.84 microsoft/vcpkg#38980 * Bump to a more recent vcpkg due to a build error in arrow apache/arrow#42027 * Avoid fmt 11 due to a bug for MSVC gabime/spdlog#3251 (comment) * Remove obsolete GRPC config in top-level CMake * Avoid pinning of Protobuf
- Loading branch information
Showing
5 changed files
with
23 additions
and
49 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
Submodule vcpkg
updated
7212 files
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,12 +1,18 @@ | ||
{ | ||
"dependencies": [ | ||
"arrow", | ||
"boost-filesystem", | ||
"boost-spirit", | ||
"eigen3", | ||
"grpc", | ||
"type-lite", | ||
"fast-float", | ||
"spdlog" | ||
] | ||
"dependencies": [ | ||
"arrow", | ||
"boost-filesystem", | ||
"boost-spirit", | ||
"eigen3", | ||
"grpc", | ||
"type-lite", | ||
"fast-float", | ||
"spdlog" | ||
], | ||
"overrides": [ | ||
{ | ||
"name": "fmt", | ||
"version": "10.1.1" | ||
} | ||
] | ||
} |