-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
30 lines (28 loc) · 890 Bytes
/
Package.swift
File metadata and controls
30 lines (28 loc) · 890 Bytes
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.7
import PackageDescription
let package = Package(
name: "TPPDFAsync",
platforms: [
.iOS(.v13),
.macOS(.v10_15)
],
products: [
.library(name: "TPPDFAsync", targets: ["TPPDFAsync"]),
],
dependencies: [
.package(url: "https://github.com/techprimate/TPPDF", from: "2.4.1"),
//dev .package(url: "https://github.com/Quick/Quick", from: "7.0.0"),
//dev .package(url: "https://github.com/Quick/Nimble", from: "12.0.0"),
//dev .package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.50.4"),
],
targets: [
.target(name: "TPPDFAsync", dependencies: [
"TPPDF"
]),
//dev .testTarget(name: "TPPDFAsyncTests", dependencies: [
//dev "TPPDFAsync",
//dev "Quick",
//dev "Nimble"
//dev ]),
]
)