summaryrefslogtreecommitdiff
path: root/doc/HOWTO.md
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-09 12:37:57 +0100
committerskal <pascal.massimino@gmail.com>2026-02-09 12:37:57 +0100
commit655d0a627c17b598562616a269e53bf06124d43f (patch)
tree7af4bba4fd413ec3dc2fc0c9ac55d1c010732f8a /doc/HOWTO.md
parent9f470ce9c629b8756a3b1b8b9d30e8cf643dbcbd (diff)
docs: Archive Feb 9 completed tasks and clarify build configs
- Move completed tasks (Uniform alignment, WGSL validation, test_demo fix) to COMPLETED.md - Clean up TODO.md and PROJECT_CONTEXT.md "Recently Completed" sections - Update HOWTO.md to clarify DEMO_ALL_OPTIONS enables STRIP_ALL - Note: test_demo PeakMeterEffect requires non-STRIP build Net: -26 lines (better context hygiene) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'doc/HOWTO.md')
-rw-r--r--doc/HOWTO.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/HOWTO.md b/doc/HOWTO.md
index 967b554..2595258 100644
--- a/doc/HOWTO.md
+++ b/doc/HOWTO.md
@@ -45,12 +45,14 @@ cmake --build build_final -j4
- STRIP_ALL: Full checks, no debug (~64k target)
- FINAL_STRIP: No checks, no debug (absolute minimum)
-### Developer Build
+### Developer Build (Tests + Tools)
```bash
-cmake -S . -B build -DDEMO_ALL_OPTIONS=ON
+cmake -S . -B build -DDEMO_BUILD_TESTS=ON -DDEMO_BUILD_TOOLS=ON
cmake --build build -j4
```
-Enables tests, tools, size optimizations.
+Enables tests and tools without stripping debug features.
+
+**Note**: `DEMO_ALL_OPTIONS=ON` enables tests, tools, AND `STRIP_ALL`, which removes debug-only code (e.g., `test_demo` PeakMeterEffect). Use selective flags for debugging.
## Build System