-
Notifications
You must be signed in to change notification settings - Fork 6
/
Package.swift
34 lines (32 loc) · 1.01 KB
/
Package.swift
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
34
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "SplunkOtelCrashReporting",
platforms: [
.iOS(.v11),
.macOS(.v10_13)
],
products: [
.library(name: "SplunkOtelCrashReporting", targets: ["SplunkOtelCrashReporting"])
],
dependencies: [
.package(name: "SplunkOtel", url:"https://github.com/signalfx/splunk-otel-ios", from: "0.4.0"),
.package(name: "PLCrashReporter", url:"https://github.com/microsoft/plcrashreporter", from: "1.8.0")
],
targets: [
.target(
name: "SplunkOtelCrashReporting",
dependencies: [
.product(name: "CrashReporter", package: "PLCrashReporter"),
.product(name: "SplunkOtel", package: "SplunkOtel")
],
path: "SplunkRumCrashReporting",
exclude: [
"SplunkRumCrashReportingTests",
"SplunkRumCrashReporting/SplunkRumCrashReporting.h",
"SplunkRumCrashReporting/Info.plist"
],
sources: [ "SplunkRumCrashReporting" ]
)
]
)