-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
31 lines (29 loc) · 787 Bytes
/
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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "iOSMcuManagerLibrary",
platforms: [.iOS(.v12), .macOS(.v10_13)],
products: [
.library(
name: "iOSMcuManagerLibrary",
targets: ["iOSMcuManagerLibrary"]
),
],
dependencies: [
.package(
url: "https://github.com/unrelentingtech/SwiftCBOR.git",
.exact("0.4.7")
),
.package(url: "https://github.com/weichsel/ZIPFoundation.git",
.upToNextMajor(from: "0.9.0")
)
],
targets: [
.target(
name: "iOSMcuManagerLibrary",
dependencies: ["SwiftCBOR", "ZIPFoundation"],
path: "Source",
exclude:["Info.plist"]
)
]
)