File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ A Cmake JUCE port of [Robin Schmidt`s Open303](https://github.com/RobinSchmidt/O
88
99To 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```
1313The ` -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
1919To 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
3333To 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
You can’t perform that action at this time.
0 commit comments