-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPCloudSDKSwift.podspec
More file actions
27 lines (20 loc) · 1.13 KB
/
PCloudSDKSwift.podspec
File metadata and controls
27 lines (20 loc) · 1.13 KB
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
Pod::Spec.new do |s|
s.name = 'PCloudSDKSwift'
s.version = '3.2.3'
s.summary = 'Swift SDK for the pCloud API'
s.homepage = 'https://github.com/pcloud/pcloud-sdk-swift'
s.license = 'MIT'
s.author = 'pCloud'
s.source = { :git => "https://github.com/pcloud/pcloud-sdk-swift.git", :tag => '3.2.3' }
s.swift_version = '5'
s.osx.deployment_target = '10.13'
s.ios.deployment_target = '12.0'
s.osx.frameworks = 'AppKit', 'Webkit', 'SystemConfiguration', 'Foundation'
s.ios.frameworks = 'UIKit', 'Webkit', 'SystemConfiguration', 'Foundation'
s.ios.public_header_files = 'PCloudSDKSwift/Source/**/*.h'
s.osx.public_header_files = 'PCloudSDKSwift/Source/**/*.h'
s.osx.source_files = "PCloudSDKSwift/Source/Common/**/*.{swift,h}", "PCloudSDKSwift/Source/macOS/**/*.swift"
s.ios.source_files = "PCloudSDKSwift/Source/Common/**/*.{swift,h}", "PCloudSDKSwift/Source/iOS/**/*.swift"
s.osx.resource_bundle = { 'PCloudSDKSwiftResources' => "PCloudSDKSwift/Source/macOS/*.xib" }
s.requires_arc = true
end