forked from mongodb/stitch-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStitchGCM.podspec
31 lines (26 loc) · 1.08 KB
/
StitchGCM.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
# coding: utf-8
Pod::Spec.new do |s|
s.name = "StitchGCM"
s.version = "0.2.0"
s.summary = "A helper library to easily have Google Cloud Messaging running on your application"
s.license = {
:type => "Apache 2",
:file => "./LICENSE"
}
s.platform = :ios, "9.0"
s.authors = "MongoDB"
s.homepage = "https://stitch.mongodb.com"
s.source = {
:git => "https://github.com/mongodb/stitch-ios-sdk.git",
:tag => "#{s.version}"
}
s.source_files = "StitchGCM/StitchGCM/**/*.{h,m}"
s.public_header_files = "StitchGCM/StitchGCM/*.h"
s.requires_arc = true
s.frameworks = 'SafariServices'
s.pod_target_xcconfig = {
'FRAMEWORK_SEARCH_PATHS' => '$(inherited) $(PODS_ROOT)/GoogleCloudMessaging',
'OTHER_LDFLAGS' => '$(inherited) -undefined dynamic_lookup'
}
s.dependency "Google/CloudMessaging"
end