c++cmakevcpkg

get new package version in vcpkg


I'm trying to build a project with cmake und vcpkg but the vcpkg won't install the new version of the fmt library (10.1.1). There must be a file where the to be installed version is defined(?)

The following packages will be built and installed:
[...]
> [CMake]     fmt:x64-windows@8.1.1#1 -- C:\vcpkg\buildtrees\versioning_\versions\fmt\602d9743b7957c9e82a06d0e81d58637c6df5222
[...]

vcpkg.json

{
    "name": "name",
    "version-string": "5",
    "builtin-baseline": "c6a4ed75f03a7485cf6fc91794809cd73f8f5aeb",
    "dependencies": [
        "cereal",
        "eigen3",
        "fast-float",
        "fmt",
        "gtest",
        "magic-enum",
        "ms-gsl",
        "nlopt",
        "spdlog"
    ]
}

Solution

  • I solved it by updating the builtin-baseline via vcpkg x-update-baseline.