Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
midilab committed Jun 28, 2023
1 parent dbd0c95 commit 9f25c93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A Cmake JUCE port of [Robin Schmidt`s Open303](https://github.com/RobinSchmidt/O

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

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

To generate a **Visual Studio 2022 (17)** project, run:
```sh
cmake -B Build -G "Visual Studio 17"
cmake -B build -G "Visual Studio 17"
```

---
Expand All @@ -32,7 +32,7 @@ cmake -B build

To build the generated IDE project from the command line, run:
```sh
cmake --build Build --config Release
cmake --build build --config Release
```

## Roadmap
Expand Down

0 comments on commit 9f25c93

Please sign in to comment.