0%

generate-xcframework

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
GPUImage3

xcodebuild archive \
-scheme GPUImage_iOS \
-configuration Release \
-destination 'generic/platform=iOS' \
-archivePath './build/GPUImage.framework-iphoneos.xcarchive' \
SKIP_INSTALL=NO \
BUILD_LIBRARIES_FOR_DISTRIBUTION=YES

xcodebuild archive \
-scheme GPUImage_iOS \
-configuration Release \
-destination 'generic/platform=iOS Simulator' \
-archivePath './build/GPUImage.framework-iphonesimulator.xcarchive' \
SKIP_INSTALL=NO \
BUILD_LIBRARIES_FOR_DISTRIBUTION=YES

xcodebuild -create-xcframework \
-framework './build/GPUImage.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/GPUImage.framework' \
-framework './build/GPUImage.framework-iphoneos.xcarchive/Products/Library/Frameworks/GPUImage.framework' \
-output './build/GPUImage.xcframework'

==================GPUImage.framework .h
xcodebuild archive \
-project GPUImage.xcodeproj \
-scheme GPUImageFramework \
-configuration Release \
-destination 'generic/platform=iOS' \
-archivePath './build/GPUImage.framework-iphoneos.xcarchive' \
SKIP_INSTALL=NO \
BUILD_LIBRARIES_FOR_DISTRIBUTION=YES

xcodebuild archive \
-project GPUImage.xcodeproj \
-scheme GPUImageFramework \
-configuration Release \
-destination 'generic/platform=iOS Simulator' \
-archivePath './build/GPUImage.framework-iphonesimulator.xcarchive' \
SKIP_INSTALL=NO \
BUILD_LIBRARIES_FOR_DISTRIBUTION=YES

xcodebuild -create-xcframework \
-framework './build/GPUImage.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/GPUImage.framework' \
-framework './build/GPUImage.framework-iphoneos.xcarchive/Products/Library/Frameworks/GPUImage.framework' \
-output './build/GPUImage.xcframework'

================GPUImage.a
xcodebuild archive \
-project GPUImage.xcodeproj \
-scheme GPUImage \
-configuration Release \
-destination 'generic/platform=iOS' \
-archivePath './build/GPUImage.framework-iphoneos.xcarchive' \
SKIP_INSTALL=NO \
BUILD_LIBRARIES_FOR_DISTRIBUTION=YES

xcodebuild archive \
-project GPUImage.xcodeproj \
-scheme GPUImage \
-configuration Release \
-destination 'generic/platform=iOS Simulator' \
-archivePath './build/GPUImage.framework-iphonesimulator.xcarchive' \
SKIP_INSTALL=NO \
BUILD_LIBRARIES_FOR_DISTRIBUTION=YES

xcodebuild -create-xcframework \
-library './build/GPUImage.framework-iphonesimulator.xcarchive/Products/usr/local/lib/libGPUImage.a' \
-library './build/GPUImage.framework-iphoneos.xcarchive/Products/usr/local/lib/libGPUImage.a' \
-output './build/GPUImage.xcframework'