Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion COMPILING.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ brew link Qt@5 --force

### Generate Xcode Project file

`qmake -spec macx-xcode Jamulus.pro`
`qmake QMAKE_APPLE_DEVICE_ARCHS=arm64 QT_ARCH=arm64 -spec macx-xcode Jamulus.pro`
**Note:** if you still build on x86_64, not Apple silicon, you must replace `arm64` with `x86_64`.

### Print build targets and configuration in console

Expand Down Expand Up @@ -149,6 +150,7 @@ Schemes:
`xcodebuild build`

Will build the file and make it available in `./Release/Jamulus.app`
In order to run the application, you might need to run `macdeployqt ./Release/Jamulus.app`.

If you want to build the installer, please run the `deploy_mac.sh` script: `./mac/deploy_mac.sh`. You'll find the installer in the deploy/ folder.

Expand Down