-
Notifications
You must be signed in to change notification settings - Fork 171
/
Copy pathOpenTelemetry-Swift-Protocol-Exporter-Http.podspec
27 lines (22 loc) · 1.29 KB
/
OpenTelemetry-Swift-Protocol-Exporter-Http.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
Pod::Spec.new do |spec|
spec.name = "OpenTelemetry-Swift-Protocol-Exporter-Http"
spec.version = "1.15.0"
spec.summary = "Swift OpenTelemetry Protocol Exporter Common"
spec.homepage = "https://github.com/open-telemetry/opentelemetry-swift"
spec.documentation_url = "https://opentelemetry.io/docs/languages/swift"
spec.license = { :type => "Apache 2.0", :file => "LICENSE" }
spec.authors = "OpenTelemetry Authors"
spec.source = { :git => "https://github.com/open-telemetry/opentelemetry-swift.git", :tag => spec.version.to_s }
spec.source_files = "Sources/Exporters/OpenTelemetryProtocolHttp/**/*.swift"
spec.swift_version = "5.10"
spec.ios.deployment_target = "13.0"
spec.tvos.deployment_target = "13.0"
spec.watchos.deployment_target = "6.0"
spec.module_name = "OpenTelemetryProtocolExporterHttp"
spec.dependency 'OpenTelemetry-Swift-Api', spec.version.to_s
spec.dependency 'OpenTelemetry-Swift-Sdk', spec.version.to_s
spec.dependency 'OpenTelemetry-Swift-Protocol-Exporter-Common', spec.version.to_s
spec.dependency 'OpenTelemetry-Swift-DataCompression', spec.version.to_s
spec.dependency 'SwiftProtobuf', '~> 1.28'
spec.pod_target_xcconfig = { "OTHER_SWIFT_FLAGS" => "-module-name OpenTelemetryProtocolExporterHttp -package-name opentelemetry_swift_exporter_http" }
end