Skip to content

Commit 9f25c93

Browse files
committed
fix typo
1 parent dbd0c95 commit 9f25c93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Cmake JUCE port of [Robin Schmidt`s Open303](https://github.com/RobinSchmidt/O
88

99
To generate an **Xcode** project, run:
1010
```sh
11-
cmake -B Build -G Xcode -D CMAKE_OSX_ARCHITECTURES=arm64\;x86_64 -D CMAKE_OSX_DEPLOYMENT_TARGET=10.13
11+
cmake -B build -G Xcode -D CMAKE_OSX_ARCHITECTURES=arm64\;x86_64 -D CMAKE_OSX_DEPLOYMENT_TARGET=10.13
1212
```
1313
The `-D CMAKE_OSX_ARCHITECTURES=arm64\;x86_64` flag is required to build universal binaries.
1414

@@ -18,7 +18,7 @@ The `-D CMAKE_OSX_DEPLOYMENT_TARGET=10.13` flag sets the minimum MacOS version t
1818

1919
To generate a **Visual Studio 2022 (17)** project, run:
2020
```sh
21-
cmake -B Build -G "Visual Studio 17"
21+
cmake -B build -G "Visual Studio 17"
2222
```
2323

2424
---
@@ -32,7 +32,7 @@ cmake -B build
3232

3333
To build the generated IDE project from the command line, run:
3434
```sh
35-
cmake --build Build --config Release
35+
cmake --build build --config Release
3636
```
3737

3838
## Roadmap

0 commit comments

Comments
 (0)