forked from satori-com/satori-rtm-sdk-c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSatoriRtmSdkWrapper.podspec
19 lines (16 loc) · 1.04 KB
/
SatoriRtmSdkWrapper.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "SatoriRtmSdkWrapper"
s.version = "2.1.0"
s.summary = "An iOS wrapper for C SDK for Satori RTM."
s.description = <<-DESC
The Satori RTM C SDK wrapper for iOS enables you to integrate your iOS apps with Satori. Using the wrapper, you can publish and subscribe messages to RTM.
DESC
s.homepage = "https://github.com/satori-com/satori-rtm-sdk-c"
s.license = { :type => "Satori Platform License", :file => "LICENSE" }
s.author = "Satori Worldwide, Inc."
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/satori-com/satori-rtm-sdk-c.git", :tag => "v#{s.version}" }
s.source_files = "ios-wrapper/SatoriRtmSdkWrapper/SatoriRtmSdkWrapper/**/*.{h,m}", "core/src/*.{h,c}", "core/src/io/rtm_posix.c", "core/src/ssl/rtm_apple_ssl.c"
s.public_header_files = "ios-wrapper/SatoriRtmSdkWrapper/SatoriRtmSdkWrapper/**/*.h", "core/src/rtm.h"
s.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "$(PODS_TARGET_SRCROOT)/vendor/**", "GCC_PREPROCESSOR_DEFINITIONS" => "RTM_USE_APPLE_SSL" }
end