-
Notifications
You must be signed in to change notification settings - Fork 81
/
OktaOidc.podspec
31 lines (28 loc) · 1.26 KB
/
OktaOidc.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
Pod::Spec.new do |s|
s.name = 'OktaOidc'
s.version = '3.11.7'
s.summary = 'SDK to easily integrate AppAuth with Okta'
s.description = <<-DESC
Integrate your native app with Okta using the AppAuth library.
DESC
s.platforms = { :ios => "11.0", :osx => "10.14"}
s.homepage = 'https://github.com/okta/okta-oidc-ios'
s.license = { :type => 'APACHE2', :file => 'LICENSE' }
s.authors = { "Okta Developers" => "developer@okta.com"}
s.source = { :git => 'https://github.com/okta/okta-oidc-ios.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.subspec 'AppAuth' do |appauth|
appauth.source_files = 'Sources/AppAuth/**/*.{h,m}'
appauth.ios.deployment_target = '11.0'
appauth.osx.deployment_target = '10.14'
end
s.subspec 'Okta' do |okta|
okta.dependency 'OktaOidc/AppAuth'
okta.source_files = 'Sources/OktaOidc/**/*.{h,swift}'
okta.resource_bundles = { 'OktaOidc' => 'Sources/OktaOidc/Common/Resources/**/*' }
okta.exclude_files = 'Sources/OktaOidc/Common/Exports.swift'
okta.ios.deployment_target = '11.0'
okta.osx.deployment_target = '10.14'
end
s.xcconfig = { 'USER_HEADER_SEARCH_PATHS' => '${SRCROOT}/Sources/**' }
end