-
Notifications
You must be signed in to change notification settings - Fork 61
/
Package.swift
38 lines (36 loc) · 1.37 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "AcknowList",
defaultLocalization: "en",
platforms: [
.iOS(.v13), .tvOS(.v13), .watchOS(.v7), .macOS(.v10_15)
],
products: [
.library(name: "AcknowList", targets: ["AcknowList"])
],
targets: [
.target(
name: "AcknowList",
exclude: ["AcknowList.docc"],
resources: [.process("Resources")]
),
.testTarget(
name: "AcknowListTests",
dependencies: ["AcknowList"],
exclude: ["Info.plist"],
resources: [
.copy("Resources/Pods-acknowledgements-RegexTesting.plist"),
.copy("Resources/Pods-acknowledgements.plist"),
.copy("Resources/RegexTesting-GroundTruth-Charts.txt"),
.copy("Resources/RegexTesting-GroundTruth-TYPFontAwesome.txt"),
.copy("Resources/Pods-acknowledgements-multi.plist"),
.copy("Resources/RegexTesting-GroundTruth-Alamofire.txt"),
.copy("Resources/RegexTesting-GroundTruth-TPKeyboardAvoiding.txt"),
.copy("Resources/RegexTesting-GroundTruth-pop.txt"),
.copy("Resources/Package-version-1.resolved"),
.copy("Resources/Package-version-2.resolved")]
),
],
swiftLanguageVersions: [.v5]
)