-
Notifications
You must be signed in to change notification settings - Fork 24
/
OptimizelySDKCore.podspec
23 lines (23 loc) · 1.3 KB
/
OptimizelySDKCore.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "OptimizelySDKCore"
s.version = "3.1.5"
s.summary = "Optimizely server-side testing core framework."
s.homepage = "http://developers.optimizely.com/server/reference/index.html?language=objectivec"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "Optimizely" => "support@optimizely.com" }
s.ios.deployment_target = "9.0"
s.tvos.deployment_target = "9.0"
s.source = {
:git => "https://github.com/optimizely/objective-c-sdk.git",
:tag => "v"+s.version.to_s
}
s.source_files = "OptimizelySDKCore/OptimizelySDKCore/*.{h,m}", "OptimizelySDKCore/Frameworks/**/*.{c,h,m}", "OptimizelySDKCore/OPTLYJSONModel/**/*.{c,h,m}"
s.public_header_files = "OptimizelySDKCore/OptimizelySDKCore/*.h", "OptimizelySDKCore/OPTLYJSONModel/**/*.h"
s.exclude_files = "OPTLYMacros.h", "OPTLYLog.h", "OPTLYLog.m"
s.framework = "Foundation"
s.requires_arc = true
s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => "OPTIMIZELY_SDK_VERSION=@\\\"#{s.version}\\\"" }
s.resource_bundles = {
'OptimizelySDKCoreiOS' => ['OptimizelySDKCore/Resources/*.cer']
}
end