Commands that I should not forget
This builds the project (also cleans the build directory)
# From your project root:rm -rf buildmkdir build && cd build
# 1. Configure (this creates CMakeCache.txt)cmake -S .. -B .
# 2. Build (clean-first + 4-way parallel)cmake --build . --clean-first -- -j4