Tooling
Tooling
Tooling and workflow notes
A compact page for editors, build systems, and repeatable developer workflows. Everything is intentionally mock content.
Editors and IDEs
Profile settings, code navigation, and format-on-save defaults for small technical teams.
Build system helpers
CMake presets, compiler matrices, and small scripts that keep the build surface predictable.
Testing harnesses
Smoke tests, unit tests, and a short feedback loop before code reaches a wider environment.
Package hygiene
Dependency checks, version pinning, and lightweight release notes that keep the mock site tidy.
Workflow snippet
cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
cmake --build build
ctest --test-dir build --output-on-failure