6 lines
298 B
Bash
Executable File
6 lines
298 B
Bash
Executable File
#!/bin/sh
|
|
CGO_ENABLED=0 fyne build --target darwin -o MobileMkch-arm64
|
|
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 fyne build --target darwin -o MobileMkch-amd64
|
|
lipo -create MobileMkch-arm64 MobileMkch-amd64 -output MobileMkch-universal
|
|
fyne package --executable MobileMkch-universal --name MobileMkch
|