File tree 1 file changed +3
-3
lines changed
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
8
8
9
9
To generate an ** Xcode** project, run:
10
10
``` 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
12
12
```
13
13
The ` -D CMAKE_OSX_ARCHITECTURES=arm64\;x86_64 ` flag is required to build universal binaries.
14
14
@@ -18,7 +18,7 @@ The `-D CMAKE_OSX_DEPLOYMENT_TARGET=10.13` flag sets the minimum MacOS version t
18
18
19
19
To generate a ** Visual Studio 2022 (17)** project, run:
20
20
``` sh
21
- cmake -B Build -G " Visual Studio 17"
21
+ cmake -B build -G " Visual Studio 17"
22
22
```
23
23
24
24
---
@@ -32,7 +32,7 @@ cmake -B build
32
32
33
33
To build the generated IDE project from the command line, run:
34
34
``` sh
35
- cmake --build Build --config Release
35
+ cmake --build build --config Release
36
36
```
37
37
38
38
## Roadmap
You can’t perform that action at this time.
0 commit comments