Update vcpkg to 2024.02.14

* 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

https://github.com/microsoft/vcpkg/issues/38980

* Bump to a more recent vcpkg due to a build error in arrow

https://github.com/apache/arrow/issues/42027

* Avoid fmt 11 due to a bug for MSVC

https://github.com/gabime/spdlog/issues/3251#issue-2648376977

* Remove obsolete GRPC config in top-level CMake
* Avoid pinning of Protobuf
This commit is contained in:
Magne Sjaastad
2025-01-19 16:16:09 +01:00
committed by GitHub
parent c13ce39b5e
commit d17ecc4345
5 changed files with 23 additions and 49 deletions

View File

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