forked from getsentry/sentry-cocoa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Sentry.podspec
33 lines (28 loc) · 941 Bytes
/
Sentry.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
32
33
Pod::Spec.new do |s|
s.name = "Sentry"
s.version = "7.0.0-alpha.1"
s.summary = "Sentry client for cocoa"
s.homepage = "https://github.com/getsentry/sentry-cocoa"
s.license = "mit"
s.authors = "Sentry"
s.source = { :git => "https://github.com/getsentry/sentry-cocoa.git",
:tag => s.version.to_s }
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.module_name = "Sentry"
s.requires_arc = true
s.frameworks = 'Foundation'
s.libraries = 'z', 'c++'
s.xcconfig = {
'GCC_ENABLE_CPP_EXCEPTIONS' => 'YES'
}
s.default_subspecs = ['Core']
s.subspec 'Core' do |sp|
sp.source_files = "Sources/Sentry/**/*.{h,m}",
"Sources/SentryCrash/**/*.{h,m,mm,c,cpp}"
sp.public_header_files =
"Sources/Sentry/Public/*.h"
end
end