September 2018
Intermediate to advanced
606 pages
14h 32m
English
This recipe shows how the superbuild pattern can be harnessed to muster the dependencies of your project. Let us take another look at the layout of the project:
.├── CMakeLists.txt├── external│ └── upstream│ ├── boost│ │ └── CMakeLists.txt│ └── CMakeLists.txt└── src ├── CMakeLists.txt └── path-info.cpp
We have introduced four CMakeLists.txt files in the project source tree:
Let us start start the discussion with the external/upstream/boost/CMakeLists.txt ...
Read now
Unlock full access