From dd42eeef53df8ea36f436986f915f29986c094a3 Mon Sep 17 00:00:00 2001 From: skal Date: Mon, 9 Feb 2026 19:03:00 +0100 Subject: docs: Update references to workspace layout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update all doc references from old paths to workspace structure: - assets/demo.seq → workspaces/main/timeline.seq - assets/music.track → workspaces/main/music.track - assets/final/demo_assets.txt → workspaces/main/assets.txt - assets/test_demo.* → workspaces/test/* Files updated: - HOWTO.md: Add workspace selection, update paths - SEQUENCE.md: Update examples and integration - ASSET_SYSTEM.md: Workspace-aware workflow - CONTRIBUTING.md: Workspace timeline paths - ARCHITECTURE.md: Generic workspace reference Co-Authored-By: Claude Sonnet 4.5 --- doc/HOWTO.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) (limited to 'doc/HOWTO.md') diff --git a/doc/HOWTO.md b/doc/HOWTO.md index 9e32a86..97c7df7 100644 --- a/doc/HOWTO.md +++ b/doc/HOWTO.md @@ -6,6 +6,19 @@ Quick reference for common tasks. ## Building +### Workspace Selection +```bash +# Main demo (default) +cmake -S . -B build -DDEMO_WORKSPACE=main +cmake --build build -j4 +./build/demo64k + +# Test demo +cmake -S . -B build_test -DDEMO_WORKSPACE=test +cmake --build build_test -j4 +./build_test/test_demo +``` + ### Debug Build ```bash cmake -S . -B build @@ -52,7 +65,7 @@ cd build && ctest ## Timeline -Edit `assets/demo.seq`: +Edit `workspaces/main/timeline.seq`: ```text SEQUENCE 0.0 0 EFFECT HeptagonEffect 0.0 60.0 0 @@ -79,11 +92,11 @@ See `doc/TRACKER.md` for music system. ## Assets -Edit `assets/final/demo_assets.txt`, then: +Edit `workspaces/main/assets.txt`, then rebuild: ```bash -./scripts/gen_assets.sh +cmake --build build -j4 ``` -See `doc/ASSET_SYSTEM.md`. +See `doc/ASSET_SYSTEM.md` and `doc/WORKSPACE_SYSTEM.md`. --- -- cgit v1.2.3