Structure cmake_example/ ├── CMakeLists.txt ├── config.hpp.in └── main.cpp Files CMakeLists.txt config.hpp.in main.cpp Execution $ cmake -S”src” -B”build” $ cmake –build
Continue readingCategory: CMake
Out of source building (CMake)
When building your project with CMake, make sure to put all generated files in a different folder. Meta build $
Continue reading