-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (27 loc) · 995 Bytes
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
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "SentryCocoaLumberjack",
platforms: [
.macOS(.v10_10), .iOS(.v9), .tvOS(.v9), .watchOS(.v3)
],
products: [.library(name: "SentryCocoaLumberjack",
targets: ["SentryCocoaLumberjack"])],
dependencies: [
.package(url: "https://github.com/getsentry/sentry-cocoa", from: "5.2.2"),
.package(url: "https://github.com/CocoaLumberjack/CocoaLumberjack", from: "3.6.2")
],
targets: [
.target(
name: "SentryCocoaLumberjack",
dependencies: [ "Sentry", .product(name: "CocoaLumberjackSwift", package: "CocoaLumberjack")],
exclude: [ "Example" ]),
.target(
name: "Example",
dependencies: [
"Sentry",
"SentryCocoaLumberjack",
.product(name: "CocoaLumberjackSwift", package: "CocoaLumberjack")],
path: "Example")
]
)