Logo
Overview
Building my own productivity tool

Building my own productivity tool

July 4, 2025
1 min read
index

Commands that I should not forget

This builds the project (also cleans the build directory)

Terminal window
# From your project root:
rm -rf build
mkdir build && cd build
# 1. Configure (this creates CMakeCache.txt)
cmake -S .. -B .
# 2. Build (clean-first + 4-way parallel)
cmake --build . --clean-first -- -j4