- Create build directory and Makfile:
cmake -S . -B build - Compile:
cmake --build build - Run:
./build/software_rasterizer
All at once: cmake -S . -B build && cmake --build build && ./build/software_rasterizer
https://google.github.io/styleguide/cppguide.html#General_Naming_Rules
