Technical requirements
You can find the code files that are present in this chapter on GitHub at https://github.com/PacktPublishing/Modern-CMake-for-Cpp-2E/tree/main/examples/ch12.
To build the examples provided in this book, always use these recommended commands:
cmake -B <build tree> -S <source tree>
cmake --build <build tree>
Be sure to replace the placeholders <build tree>
and <source tree>
with appropriate paths. As a reminder, build tree is the path to target/output directory, and source tree is the path where your source code is located.