From f17bacf93772e4450c39ff045ac4255490ebee48 Mon Sep 17 00:00:00 2001 From: Joseph Aquino Date: Tue, 14 Apr 2026 22:42:28 +0000 Subject: [PATCH] Update Readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9cb836c..baa12a4 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,14 @@ * Make or Ninja build system ## Steps for Windows -1. clone the repo and submodules
```git clone --recurse-submodules https://git.josephaquino.net/joseph-aquino/breakout.git``` +1. clone the repo and submodules
```git clone --recurse-submodules https://git.josephaquino.net/joseph-aquino/snake.git``` 2. run the `Create-Solution.bat` file located in the `scripts` directory 3. open the Visual Studio solution file in the newly created `build` directory that is in the root of the project 4. use Visual Studio to build the project 5. the final executible will be in the `bin` directory ## Steps for Linux -1. clone the repo and submodules
```git clone --recurse-submodules https://git.josephaquino.net/joseph-aquino/breakout.git``` +1. clone the repo and submodules
```git clone --recurse-submodules https://git.josephaquino.net/joseph-aquino/snake.git``` 2. choose one of the build scripts from the `build` directory. `build.sh ` for Make, `build-ninja.sh ` for Ninja 3. run your script of choice with the desired configuration as an argument. Note: for Make, configurations are lowercase; for Ninja, configurations have a capitalized first letter
example:
```./scripts/build.sh release```