From: Vinnie Falco (vinnie.falco_at_[hidden])
Date: 2024-12-07 20:51:14


On Sat, Dec 7, 2024 at 6:14 AM Peter Dimov via Boost <boost_at_[hidden]>
wrote:

> I know that many do not want to clone the entire Boost to place the
> library in libs/hash2, so I've added support for building it with CMake
> as a standalone project - it uses FetchContent to acquire the necessary
> Boost dependencies.
>

It is easier for me to put it in libs/hash2. I cloned it there and then ran
this command line from hash2:

    cmake -G "Visual Studio 17 2022" -A x64 -B bin64
-DCMAKE_TOOLCHAIN_FILE="C:/vcpkg/scripts/buildsystems/vcpkg.cmake"
-DVCPKG_CHAINLOAD_TOOLCHAIN_FILE="C:/users/vinnie/src/toolchains/msvc.cmake"

FetchContent was invoked. How do I build a Visual Studio Solution for hash2
which uses my existing local clone of the superproject?

Thanks