You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To build only for the native architecture, and/or specify the lowest supported macOS version, pass variable `ARCHS`/`MACOSX_DEPLOYMENT_TARGET` to `make`:
109
+
To build only for the native architecture, and/or specify the lowest supported macOS version, pass variable `ARCHS` and/or `MACOSX_DEPLOYMENT_TARGET` to `make`:
110
110
111
111
```sh
112
-
# for Universal macOS App, targetting Ventura
113
-
make ARCHS='arm64 x86_64' MACOSX_DEPLOYMENT_TARGET='13.0'
112
+
# for Universal macOS App
113
+
make ARCHS='arm64 x86_64'
114
114
115
-
# for ARM macOS App, targetting Ventura
116
-
make ARCHS='arm64' MACOSX_DEPLOYMENT_TARGET='13.0'
115
+
# for ARM macOS App
116
+
make ARCHS='arm64'
117
117
```
118
118
119
119
## Install it on your Mac
@@ -123,7 +123,7 @@ make ARCHS='arm64' MACOSX_DEPLOYMENT_TARGET='13.0'
123
123
Just add `package` after `make`
124
124
125
125
```
126
-
make package ARCHS='arm64' MACOSX_DEPLOYMENT_TARGET='13.0'
126
+
make package ARCHS='arm64'
127
127
```
128
128
129
129
Define or echo `DEV_ID` to automatically handle code signing and [notarization](https://developer.apple.com/documentation/security/notarizing_macos_software_before_distribution) (Apple Developer ID needed)
0 commit comments