-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPackage.swift
43 lines (41 loc) · 1.05 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// swift-tools-version: 5.4
import PackageDescription
let package = Package(
name: "ColorPaletteCodable",
platforms: [
.macOS(.v10_13),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v6)
],
products: [
.library(name: "ColorPaletteCodable", targets: ["ColorPaletteCodable"]),
.library(name: "ColorPaletteCodable-static", type: .static, targets: ["ColorPaletteCodable"]),
.library(name: "ColorPaletteCodable-shared", type: .dynamic, targets: ["ColorPaletteCodable"]),
],
dependencies: [
.package(url: "https://github.com/dagronf/DSFRegex", from: "3.4.0"),
.package(url: "https://github.com/dagronf/SwiftImageReadWrite", from: "1.7.1"),
.package(url: "https://github.com/dagronf/TinyCSV", from: "1.0.0"),
],
targets: [
.target(
name: "ColorPaletteCodable",
dependencies: [
"DSFRegex",
"SwiftImageReadWrite",
"TinyCSV",
],
resources: [
.copy("PrivacyInfo.xcprivacy"),
]
),
.testTarget(
name: "ColorPaletteCodableTests",
dependencies: ["ColorPaletteCodable"],
resources: [
.process("resources"),
]
),
]
)