-
Notifications
You must be signed in to change notification settings - Fork 28
/
Package.swift
96 lines (94 loc) · 2.75 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "Listable",
defaultLocalization: "en",
platforms: [
.iOS(.v15),
.macCatalyst(.v15),
],
products: [
.library(
name: "ListableUI",
targets: ["ListableUI"]
),
.library(
name: "BlueprintUILists",
targets: ["BlueprintUILists"]
),
],
dependencies: [
.package(url: "https://github.com/square/Blueprint", from: "5.0.0"),
],
targets: [
.target(
name: "ListableUI",
path: "ListableUI",
exclude: [
"Sources/KeyboardObserver/SetupKeyboardObserverOnAppStartup.m",
"Sources/Layout/Paged/PagedAppearance.monopic",
"Sources/ContentBounds/ListContentBounds.monopic",
"Sources/Layout/Table/TableAppearance.monopic",
"Tests",
],
resources: [
.process("Resources"),
]
),
.target(
name: "EnglishDictionary",
path: "Internal Pods/EnglishDictionary",
exclude: ["EnglishDictionary.podspec"],
resources: [
.process("Resources"),
]
),
.target(
name: "Snapshot",
path: "Internal Pods/Snapshot/Sources"
),
.testTarget(
name: "SnapshotTests",
dependencies: ["Snapshot"],
path: "Internal Pods/Snapshot/Tests",
exclude: ["Snapshot Results"]
),
.testTarget(
name: "ListableUITests",
dependencies: ["ListableUI", "EnglishDictionary", "Snapshot"],
path: "ListableUI/Tests",
exclude: [
"Layout/Flow/Snapshot Results",
"Layout/Paged/Snapshot Results",
"Layout/Table/Snapshot Results",
"Previews/Snapshot Results",
],
resources: [
.process("Resources"),
]
),
.target(
name: "BlueprintUILists",
dependencies: [
"ListableUI",
.product(name: "BlueprintUI", package: "Blueprint")
],
path: "BlueprintUILists",
exclude: [
"Tests",
],
resources: [
.process("Resources"),
]
),
.testTarget(
name: "BlueprintUIListsTests",
dependencies: [
"BlueprintUILists",
.product(name: "BlueprintUICommonControls", package: "Blueprint")
],
path: "BlueprintUILists/Tests"
),
],
swiftLanguageVersions: [.v5]
)