forked from kingslay/KSPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
39 lines (35 loc) · 876 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
31
32
33
34
35
36
37
38
39
use_frameworks! :linkage => :static
workspace 'Demo.xcworkspace'
install! 'cocoapods', :generate_multiple_pod_projects => true
def common
pod 'KSPlayer', :path => '../', :testspecs => ['Tests']
pod 'Openssl', :path => '../'
pod 'SwiftLint'
end
target 'demo-iOS' do
project 'demo-iOS/demo-iOS.xcodeproj'
platform :ios, 10.0
common
end
target 'demo-macOS' do
project 'demo-macOS/demo-macOS.xcodeproj'
platform :osx, 10.12
common
end
target 'demo-SwiftUI' do
project 'demo-SwiftUI/demo-SwiftUI.xcodeproj'
platform :ios, 13.0
common
end
target 'demo-tvOS' do
project 'demo-tvOS/demo-tvOS.xcodeproj'
platform :tvos, 10.2
common
end
post_install do |installer|
installer.generated_projects.each do |project|
project.build_configurations.each do |config|
config.build_settings['SWIFT_COMPILATION_MODE'] = 'wholemodule'
end
end
end