-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathPackage.swift
26 lines (21 loc) · 1.15 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(name: "Easing",
products: [
.library(name: "Easing", targets: ["Easing"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-numerics", from: "1.0.0")
],
targets: [
.target(name: "Easing",
// 06 Jul 2020 - No need to use `.product(name: "Numerics", package: "swift-numerics")` because
// we only need the ``Real`` protocol.
// Moreover, the `Numerics` product includes the `ComplexModule` which is not yet supported in the
// latest Ubuntu version.
dependencies: [.product(name: "RealModule", package: "swift-numerics")],
resources: [.process("PrivacyInfo.xcprivacy")]
),
.testTarget(name: "EasingTests", dependencies: ["Easing"])
]
)