-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathPackage.swift
More file actions
59 lines (57 loc) · 1.59 KB
/
Package.swift
File metadata and controls
59 lines (57 loc) · 1.59 KB
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
// 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: "6.0.0"),
.package(url: "https://github.com/square/swift-keyboard-observer", from: "1.1.0"),
],
targets: [
.target(
name: "ListableUI",
dependencies: [
.product(name: "KeyboardObserver", package: "swift-keyboard-observer"),
],
path: "ListableUI",
exclude: [
"Sources/Layout/Paged/PagedAppearance.monopic",
"Sources/ContentBounds/ListContentBounds.monopic",
"Sources/Layout/Table/TableAppearance.monopic",
"Tests",
],
resources: [
.process("Resources"),
]
),
.target(
name: "BlueprintUILists",
dependencies: [
"ListableUI",
.product(name: "BlueprintUI", package: "Blueprint")
],
path: "BlueprintUILists",
exclude: [
"Tests",
],
resources: [
.process("Resources"),
]
),
],
swiftLanguageVersions: [.v5]
)