forked from DataDog/dd-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDatadogProfiling.podspec
More file actions
33 lines (23 loc) · 1.04 KB
/
DatadogProfiling.podspec
File metadata and controls
33 lines (23 loc) · 1.04 KB
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 = "DatadogProfiling"
s.version = "3.6.0"
s.summary = "Official Datadog Profiling module of the Swift SDK."
s.homepage = "https://www.datadoghq.com"
s.social_media_url = "https://twitter.com/datadoghq"
s.license = { :type => "Apache", :file => 'LICENSE' }
s.authors = "Datadog, Inc."
s.swift_version = '5.9'
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.source = { :git => "https://github.com/DataDog/dd-sdk-ios.git", :tag => s.version.to_s }
s.source_files = ["DatadogProfiling/Sources/**/*.swift",
"DatadogProfiling/Mach/**/*.{h,c,cpp}"]
s.private_header_files = ["DatadogProfiling/Mach/**/*.h"]
s.preserve_paths = "DatadogProfiling/Mach/include/module.modulemap"
s.dependency 'DatadogInternal', s.version.to_s
# Configure C++ compilation
s.pod_target_xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++17',
'SWIFT_INCLUDE_PATHS' => '$(PODS_TARGET_SRCROOT)/DatadogProfiling/Mach'
}
end