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-Sdk.podspec
More file actions
22 lines (19 loc) · 909 Bytes
/
OpenTelemetry-Swift-Sdk.podspec
File metadata and controls
22 lines (19 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = "OpenTelemetry-Swift-Sdk"
spec.version = "2.3.0"
spec.summary = "Swift OpenTelemetrySDK"
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/OpenTelemetrySdk/**/*.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 = "OpenTelemetrySdk"
spec.dependency 'OpenTelemetry-Swift-Api', spec.version.to_s
end