-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sh
executable file
·96 lines (86 loc) · 2.75 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/bin/sh
echo "Set exit on simple errors"
set -e
PACKAGENAME=NativeScriptWebSockets
OUTPUTPATH=$(PWD)/build
COPYPATH=$(PWD)/../../platforms/ios/
# make xcode builds deterministic
export ZERO_AR_DATE=1
rm -rf $OUTPUTPATH
echo "Build for iphonesimulator"
xcodebuild \
-project $PACKAGENAME.xcodeproj \
-scheme $PACKAGENAME \
-sdk iphonesimulator \
-configuration Release \
clean build \
BUILD_DIR=$OUTPUTPATH \
SKIP_INSTALL=NO \
-quiet
echo "Build for iphoneos"
xcodebuild \
-project $PACKAGENAME.xcodeproj \
-scheme $PACKAGENAME \
-sdk iphoneos \
-configuration Release \
clean build \
BUILD_DIR=$OUTPUTPATH \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
SKIP_INSTALL=NO \
-quiet
echo "Build for Mac Catalyst"
xcodebuild \
-project $PACKAGENAME.xcodeproj \
-scheme $PACKAGENAME \
-configuration Release \
-destination "platform=macOS,variant=Mac Catalyst" \
clean build \
BUILD_DIR=$OUTPUTPATH \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
SKIP_INSTALL=NO \
BUILD_LIBRARY_FOR_DISTRIBUTION=YES \
-quiet
echo "Build for visionos device"
xcodebuild \
-project $PACKAGENAME.xcodeproj \
-scheme $PACKAGENAME \
-configuration Release \
-destination "generic/platform=visionOS" \
clean build \
BUILD_DIR=$OUTPUTPATH \
SKIP_INSTALL=NO \
BUILD_LIBRARY_FOR_DISTRIBUTION=YES \
-quiet
echo "Build for visionos simulator"
xcodebuild \
-project $PACKAGENAME.xcodeproj \
-scheme $PACKAGENAME \
-sdk xrsimulator \
-configuration Release \
clean build \
BUILD_DIR=$OUTPUTPATH \
-destination "generic/platform=xrsimulator" \
EXCLUDED_ARCHS="i386 x86_64" \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
SKIP_INSTALL=NO \
-quiet
echo "Creating XCFramework"
xcodebuild \
-create-xcframework \
-framework $OUTPUTPATH/Release-iphoneos/$PACKAGENAME.framework \
-debug-symbols $OUTPUTPATH/Release-iphoneos/$PACKAGENAME.framework.dSYM \
-framework $OUTPUTPATH/Release-iphonesimulator/$PACKAGENAME.framework \
-debug-symbols $OUTPUTPATH/Release-iphonesimulator/$PACKAGENAME.framework.dSYM \
-framework $OUTPUTPATH/Release-maccatalyst/$PACKAGENAME.framework \
-debug-symbols $OUTPUTPATH/Release-maccatalyst/$PACKAGENAME.framework.dSYM \
-framework $OUTPUTPATH/Release-xros/$PACKAGENAME.framework \
-debug-symbols $OUTPUTPATH/Release-xros/$PACKAGENAME.framework.dSYM \
-framework $OUTPUTPATH/Release-xrsimulator/$PACKAGENAME.framework \
-debug-symbols $OUTPUTPATH/Release-xrsimulator/$PACKAGENAME.framework.dSYM \
-output $OUTPUTPATH/$PACKAGENAME.xcframework
mkdir -p $COPYPATH
rm -rf $COPYPATH/$PACKAGENAME.xcframework
cp -R $OUTPUTPATH/$PACKAGENAME.xcframework $COPYPATH/