-
-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathPackage.swift
More file actions
20 lines (19 loc) · 638 Bytes
/
Package.swift
File metadata and controls
20 lines (19 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "APNGKit",
platforms: [.macOS(.v10_14), .iOS(.v12), .tvOS(.v12)],
products: [
.library(name: "APNGKit", targets: ["APNGKit"])
],
dependencies: [
.package(name: "Delegate", url: "https://github.com/onevcat/Delegate.git", .upToNextMajor(from: "1.3.0"))
],
targets: [
.target(name: "APNGKit", dependencies: ["Delegate"]),
.testTarget(name: "APNGKitTests", dependencies: ["APNGKit"], resources: [
.copy("Resources/SpecTesting"),
.copy("Resources/General")
])
]
)