what two steps does CMake consist of?
configure step: runs the CMakeLists.txt file, defines targets
generate step: runs a generator
How does one run cmake from the command line?
cd into build dir
run cmake “path to source folder (where CMakeLists.txt lies)”
when can the make command be run?
If a Makefile exists
How does one set up CMake for a project?
create build dirs
cd into build dirs
run cmake “source path” “options”
How is CMake set up in ~/dev?
through make_build_irs.sh script
how does Cmake know to build with debug symbols?
by giving it
cmake -DCMAKE_BUILD_TYPE=Debug ..