From 7da822f80737b2f245510200a13a0a4895fca167 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sat, 13 Dec 2025 09:33:35 -0600 Subject: [PATCH] change example directories --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a7190a6..4e7eccf 100644 --- a/README.md +++ b/README.md @@ -65,11 +65,11 @@ Run the root-level `create_project.sh` with: Example: ```bash -./create_project.sh MyApp ~/dev +./create_project.sh MyApp ~/src ``` This creates: ``` -~/dev/MyApp/ +~/src/MyApp/ ``` The new directory contains: @@ -83,7 +83,7 @@ The new directory contains: ### 3️⃣ Configure the Project -In your new project directory (`~/dev/MyApp/`), edit these two files before your first build: +In your new project directory (`~/src/MyApp/`), edit these two files before your first build: > ⚠️ **Important Notice:** > Do **not modify** the root `CMakeLists.txt` file in your project. @@ -168,7 +168,7 @@ Use the provided build wrappers — they take two arguments: If you later want to **add back packages** you previously turned off (and which `cleanup.sh` removed), run the **template’s** update script from the `cpp-build-system` repository root, pointing it at your project path: ```bash # from the cpp-build-system repo root - ./update_project.sh ~/dev/MyApp + ./update_project.sh ~/src/MyApp ``` This will **restore all template-managed packages and scripts** (including `cleanup.sh`) into your project so you can re-enable dependencies via `config.sh` and rebuild.