I'm trying to build a project which requires, among other things, Boost - version 1.51.0.
The project requires Boost to be downloaded using vcpkg. On default, vcpkg downloads the latest version of the package. After a bit of research I saw vcpkg supports versioning. I editted the vcpkg.json file to download Boost version 1.51.0 instead of 1.77.0 (the current latest version on vcpkg).
However, it seems that boost's dependencies (which are also boost libraries, for example boost-accumulators) are still downloaded using version 1.77.0. Is there a way to download these libraries without manually editting the dependencies' json files as well? There are more than 150 of those...
Thanks!
EDIT: I now see the oldest available version of boost on vcpkg is 1.60. If that really is the case, replace 1.51 by 1.60 in my question above.