-
Notifications
You must be signed in to change notification settings - Fork 11
/
Package.swift
35 lines (33 loc) · 926 Bytes
/
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
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "KeyboardKit",
defaultLocalization: "en",
platforms: [.iOS(.v13)],
products: [
.library(
name: "KeyboardKit",
targets: ["KeyboardKit"]
),
],
targets: [
.target(
name: "KeyboardKitObjC",
path: "KeyboardKit/ObjC",
exclude: ["ResponderChainDebugging.m"],
publicHeadersPath: ""
),
.target(
name: "KeyboardKit",
dependencies: ["KeyboardKitObjC"],
path: "KeyboardKit",
exclude: ["Info.plist", "ObjC", "UpdateLocalisedStringKeys.swift", "Documentation.docc"]
),
.testTarget(
name: "KeyboardKitTests",
dependencies: ["KeyboardKit"],
path: "KeyboardKitTests",
exclude: ["Info.plist"]
),
]
)