-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPackage.swift
More file actions
30 lines (29 loc) · 739 Bytes
/
Copy pathPackage.swift
File metadata and controls
30 lines (29 loc) · 739 Bytes
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
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "KeyboardHostBundleID",
platforms: [
.iOS(.v15),
],
products: [
.library(
name: "KeyboardHostBundleID",
targets: ["KeyboardHostBundleID"]
),
],
targets: [
.target(
name: "KBHostArbiterHookObjC",
path: "Sources/KBHostArbiterHookObjC",
publicHeadersPath: "include",
cSettings: [
.headerSearchPath("include"),
]
),
.target(
name: "KeyboardHostBundleID",
dependencies: ["KBHostArbiterHookObjC"],
path: "Sources/KeyboardHostBundleID"
),
]
)