summaryrefslogtreecommitdiff
path: root/HOWTO.md
diff options
context:
space:
mode:
Diffstat (limited to 'HOWTO.md')
-rw-r--r--HOWTO.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/HOWTO.md b/HOWTO.md
index 73559d0..60a29fa 100644
--- a/HOWTO.md
+++ b/HOWTO.md
@@ -30,6 +30,16 @@ cmake -S . -B build -DDEMO_SIZE_OPT=ON
cmake --build build
```
+### Final / Strip Build
+
+To produce the smallest possible binary (stripping all unnecessary code like command-line parsing and debug info), use the `DEMO_STRIP_ALL` option:
+
+```bash
+cmake -S . -B build -DDEMO_STRIP_ALL=ON
+cmake --build build
+```
+In this mode, the demo will always start in fullscreen.
+
## Testing
**Commit Policy**: Always run tests before committing. Refer to `CONTRIBUTING.md` for details.