Descriptions
I tried to use CMake to compile the source codes. However, it failed with the following errors:
CMake Error at CMakeLists.txt:20 (include):
include could not find requested file:
BoostRoot
-- Configuring incomplete, errors occurred!
Therefore, I went to check the project folder, but didn't find BoostRoot.cmake.
Besides, I found that all of folders inside the tools folder are EMPTY, too.
What happened? What do I miss?
Steps of Installation
Click to expand
-
Download and unzip the source code.
boost-1.79.0.zip
-
Open Windows Terminal (cmd.exe) and change to the project folder.
-
call vcvarsall.bat x64 to preload the MSVC environment.
-
Create the build folder and change into it.
md build-msvc16-x64
cd build-msvc16-x64
-
Configure the project with the generator Ninja Multi-Config.
cmake ../cmake -G"Ninja Multi-Config"
Logs
Click to expand
C:\ccxxpkgs\source\boost-1.79.0>md build-msvc16-x64
C:\ccxxpkgs\source\boost-1.79.0>cd build-msvc16-x64
C:\ccxxpkgs\source\boost-1.79.0\build-msvc16-x64>vcvarsall x64
**********************************************************************
** Visual Studio 2019 Developer Command Prompt v16.11.16
** Copyright (c) 2021 Microsoft Corporation
**********************************************************************
[vcvarsall.bat] Environment initialized for: 'x64'
C:\ccxxpkgs\source\boost-1.79.0\build-msvc16-x64>cmake .. -G"Ninja Multi-Config"
-- The CXX compiler identification is MSVC 19.29.30145.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
CMake Error at CMakeLists.txt:20 (include):
include could not find requested file:
BoostRoot
-- Configuring incomplete, errors occurred!
See also "C:/ccxxpkgs/source/boost-1.79.0/build-msvc16-x64/CMakeFiles/CMakeOutput.log".
Screenshots

Descriptions
I tried to use CMake to compile the source codes. However, it failed with the following errors:
Therefore, I went to check the project folder, but didn't find
BoostRoot.cmake.Besides, I found that all of folders inside the
toolsfolder are EMPTY, too.What happened? What do I miss?
Steps of Installation
Click to expand
Download and unzip the source code.
boost-1.79.0.zip
Open Windows Terminal (
cmd.exe) and change to the project folder.call
vcvarsall.bat x64to preload the MSVC environment.Create the build folder and change into it.
Configure the project with the generator
Ninja Multi-Config.Logs
Click to expand
Screenshots