-
Notifications
You must be signed in to change notification settings - Fork 6
/
Setapp.podspec
38 lines (28 loc) · 1.25 KB
/
Setapp.podspec
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
Pod::Spec.new do |s|
s.name = 'Setapp'
s.version = '4.2.2'
s.summary = 'Setapp Framework'
s.homepage = 'https://setapp.com/developers'
s.author = 'Setapp Limited'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.source = { :git => "https://github.com/MacPaw/Setapp-framework.git", :tag => s.version }
s.swift_version = '5.6'
s.requires_arc = true
s.ios.deployment_target = '12.0'
s.ios.frameworks = 'Security', 'UIKit', 'Security'
s.ios.resource_bundles = {
'SetappResources_iOS_cocoapods' => ['SetappFramework-Resources-iOS.bundle']
}
s.osx.deployment_target = '10.13'
s.osx.frameworks = 'Security', 'AppKit', 'Security'
s.vendored_frameworks = 'Setapp.xcframework'
s.static_framework = true
s.pod_target_xcconfig = {
'CODE_SIGNING_ALLOWED' => 'NO'
}
s.user_target_xcconfig = {
'OTHER_LDFLAGS' => "-force_load \"$(PODS_XCFRAMEWORKS_BUILD_DIR)/Setapp/libSetapp.a\"",
'SWIFT_INCLUDE_PATHS' => '$(PODS_XCFRAMEWORKS_BUILD_DIR)/Setapp',
'LD_RUNPATH_SEARCH_PATHS' => '/usr/lib/swift'
}
end