-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
32 lines (31 loc) · 1004 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
32
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Screeb",
platforms: [
.iOS(.v11)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "Screeb",
targets: ["ScreebTarget"])
],
dependencies: [],
targets: [
.target(
name: "ScreebTarget",
dependencies: [.target(name: "BinaryFrameworkWrapper")],
path: "Sources/Screeb"),
.target(name: "BinaryFrameworkWrapper",
dependencies: [
.target(name: "Screeb")
],
path: "Sources/BinaryFramework"),
.binaryTarget(
name: "Screeb",
url: "https://github.com/ScreebApp/sdk-ios-public/releases/download/2.1.11/Screeb.zip",
checksum: "b22fb06320b6ad9759ccebcb6225b27ad67e4cfe1ea225c9de74735bcab55673"
)
]
)