-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
31 lines (29 loc) · 1.26 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
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "NabtoEdgeClient",
defaultLocalization: "en",
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "NabtoEdgeClient",
targets: ["NabtoEdgeClient"]),
],
dependencies: [
.package(url: "https://github.com/SomeRandomiOSDev/CBORCoding.git", from: "1.0.0")
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.binaryTarget(
name: "NabtoEdgeClientApi",
url: "https://downloads.nabto.com/assets/edge/ios/api/5.12.0/NabtoEdgeClientApiFW.xcframework.zip",
checksum: "1151821d590f40c8affba064bf8ed5c0ca77acb194e0e64ec536fba3578017ff"),
.target(
name: "NabtoEdgeClient",
dependencies: ["NabtoEdgeClientApi", "CBORCoding"],
path: "NabtoEdgeClient",
exclude: ["NabtoEdgeClientTests", "HostForTests"]),
]
)