Skip to content

Commit

Permalink
Fix command documentation for Xcode builds
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHelmut committed Apr 8, 2024
1 parent 3f4e9ea commit b753f2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/Packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The final application build for Apple devices should be built via the `Xcode` ge

```shell
cmake -GXcode -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -B build/xcode
cmake --build build/xcode
cmake --build build/xcode --config Release
```

### Windows
Expand Down Expand Up @@ -62,7 +62,7 @@ Xcode should be used to create the release build for the application distributab

```shell
cmake -GXcode -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -B build/xcode
cmake --build build/xcode
cmake --build build/xcode --config Release
cpack --config build/xcode/CPackConfig.cmake
```

Expand Down
2 changes: 1 addition & 1 deletion docs/QuickStart.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ the value `x86_64;arm64"`.
```shell
# Using Xcode, create universal executable
cmake -GXcode -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -B build/xcode
cmake --build build/xcode
cmake --build build/xcode --config Release
```

## Execute
Expand Down

0 comments on commit b753f2c

Please sign in to comment.