forked from kingslay/KSPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
30 lines (28 loc) · 930 Bytes
/
Podfile
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
use_frameworks! :linkage => :static
workspace 'Demo.xcworkspace'
install! 'cocoapods', :generate_multiple_pod_projects => true
def common
pod 'KSPlayer', :path => '../', :testspecs => ['Tests']
pod 'DisplayCriteria', :path => '../'
pod 'Libass', :path => '../FFmpegKit'
pod 'OpenSSL', :path => '../FFmpegKit'
pod 'FFmpegKit', :path => '../FFmpegKit'
# pod 'Libass',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
# pod 'FFmpegKit',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
# pod 'OpenSSL',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
end
target 'demo-iOS' do
project 'demo-iOS/demo-iOS.xcodeproj'
platform :ios, 13.0
common
end
target 'demo-macOS' do
project 'demo-macOS/demo-macOS.xcodeproj'
platform :osx, 10.15
common
end
target 'demo-tvOS' do
project 'demo-tvOS/demo-tvOS.xcodeproj'
platform :tvos, 13.0
common
end