1 parent 1b200ae commit 22dbcf8Copy full SHA for 22dbcf8
2 files changed
.gitignore
@@ -1,6 +1,7 @@
1
-# Xcode
+# Build output
2
.build/
3
build/
4
+dist/
5
DerivedData/
6
*.xcodeproj/xcuserdata/
7
*.xcworkspace/xcuserdata/
build.sh
@@ -0,0 +1,21 @@
+#!/bin/bash
+set -e
+
+echo "Building AudioPriorityBar..."
+xcodebuild -scheme AudioPriorityBar \
+ -configuration Release \
8
+ -derivedDataPath .build \
9
+ -arch arm64 -arch x86_64 \
10
+ ONLY_ACTIVE_ARCH=NO \
11
+ CODE_SIGN_IDENTITY="-" \
12
+ CODE_SIGNING_REQUIRED=NO \
13
+ CODE_SIGNING_ALLOWED=NO \
14
+ build
15
16
+mkdir -p dist
17
+rm -rf dist/AudioPriorityBar.app
18
+cp -R .build/Build/Products/Release/AudioPriorityBar.app dist/
19
20
+echo ""
21
+echo "Build complete: dist/AudioPriorityBar.app"
0 commit comments