diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-09 12:37:57 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-09 12:37:57 +0100 |
| commit | 655d0a627c17b598562616a269e53bf06124d43f (patch) | |
| tree | 7af4bba4fd413ec3dc2fc0c9ac55d1c010732f8a /doc/HOWTO.md | |
| parent | 9f470ce9c629b8756a3b1b8b9d30e8cf643dbcbd (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.md | 8 |
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 |
