-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathPackage.swift
30 lines (28 loc) · 1.05 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
// swift-tools-version:5.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
//
// $Id: //depot/XprobePlugin/Package.swift#16 $
//
import PackageDescription
import Foundation
let package = Package(
name: "XprobePlugin",
platforms: [.macOS("10.12"), .iOS("10.0"), .tvOS("10.0")],
products: [
.library(name: "Xprobe", targets: ["Xprobe"]),
.library(name: "XprobeSweep", targets: ["XprobeSweep"]),
.library(name: "XprobeSwift", targets: ["XprobeSwift"]),
.library(name: "XprobeUI", targets: ["XprobeUI"]),
],
dependencies: [
.package(url: "https://github.com/johnno1962/SwiftTrace",
.upToNextMajor(from: "8.6.0")),
],
targets: [
.target(name: "Xprobe", dependencies: ["XprobeSwift"]),
.target(name: "XprobeSweep", dependencies: []),
.target(name: "XprobeSwift", dependencies: ["XprobeSweep",
.product(name: "SwiftTraceD", package: "SwiftTrace")]),
.target(name: "XprobeUI", dependencies: []),
]
)