forked from rakutentech/ios-remote-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RRemoteConfig.podspec
30 lines (30 loc) · 1.35 KB
/
RRemoteConfig.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
Pod::Spec.new do |s|
s.name = "RRemoteConfig"
s.version = "1.0.0"
s.authors = "Rakuten Ecosystem Mobile"
s.summary = "Rakuten's Remote Config module."
s.homepage = "https://github.com/rakutentech/ios-remote-config"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => "https://github.com/rakutentech/ios-remote-config.git", :tag => s.version.to_s }
s.platform = :ios, '10.0'
s.swift_version = '5.0'
s.requires_arc = true
s.documentation_url = "https://rakutentech.github.io/ios-remote-config/"
s.pod_target_xcconfig = {
'CLANG_ENABLE_MODULES' => 'YES',
'CLANG_MODULES_AUTOLINK' => 'YES',
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
'GCC_C_LANGUAGE_STANDARD' => 'gnu11',
'OTHER_CFLAGS' => "'-DRPT_SDK_VERSION=#{s.version.to_s}'"
}
s.user_target_xcconfig = {
'CLANG_ENABLE_MODULES' => 'YES',
'CLANG_MODULES_AUTOLINK' => 'YES',
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
}
s.weak_frameworks = [
'Foundation',
]
s.source_files = "RRemoteConfig/**/*.{Swift,m}"
end
# vim:syntax=ruby:et:sts=2:sw=2:ts=2:ff=unix: