forked from open-telemetry/opentelemetry-swift-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenTelemetry-Swift-StdoutExporter.podspec
More file actions
26 lines (21 loc) · 1.11 KB
/
OpenTelemetry-Swift-StdoutExporter.podspec
File metadata and controls
26 lines (21 loc) · 1.11 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
Pod::Spec.new do |spec|
spec.name = "OpenTelemetry-Swift-StdoutExporter"
spec.version = "2.3.0"
spec.summary = "Swift OpenTelemetry Standard output Exporter"
spec.homepage = "https://github.com/open-telemetry/opentelemetry-swift-core"
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-core.git", :tag => spec.version.to_s }
spec.source_files = "Sources/Exporters/Stdout/*.swift"
spec.swift_version = "5.10"
spec.osx.deployment_target = "10.13"
spec.ios.deployment_target = "12.0"
spec.tvos.deployment_target = "12.0"
spec.watchos.deployment_target = "4.0"
spec.visionos.deployment_target = "1.0"
spec.module_name = "StdoutExporter"
spec.dependency 'OpenTelemetry-Swift-Api', spec.version.to_s
spec.dependency 'OpenTelemetry-Swift-Sdk', spec.version.to_s
spec.pod_target_xcconfig = { "OTHER_SWIFT_FLAGS" => "-module-name StdoutExporter -package-name opentelemetry_swift_stdout_exporter" }
end