-
Notifications
You must be signed in to change notification settings - Fork 240
/
Package.swift
31 lines (29 loc) · 847 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: "MonkeyKing",
platforms: [.iOS(.v11)],
products: [
.library(
name: "MonkeyKing",
targets: ["MonkeyKing"]
),
.library(
name: "MonkeyKingBinary",
targets: ["MonkeyKingBinary"]
)
],
targets: [
.target(name: "MonkeyKing"),
.testTarget(
name: "MonkeyKingTests",
dependencies: ["MonkeyKing"],
path: "Tests/MonkeyKingTests"
),
.binaryTarget(
name: "MonkeyKingBinary",
url: "https://github.com/nixzhu/MonkeyKing/releases/download/2.2.1/MonkeyKingBinary.xcframework.zip",
checksum: "0b9b13b7fc53136eb5e323a92a3c5fc8d273f8d4d85c6731605b8a534da027fb"
),
]
)