Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ Temporary Items
Packages/
Package.resolved
*.xcodeproj/
target/
**/target/

# App artifacts
*.app
Expand Down Expand Up @@ -70,6 +72,7 @@ run-tests-automated.sh
.build-ci/
.nano-banana-config.json
.home/
.worktrees/
.crush/
.tmp/
output/
Expand Down
1 change: 0 additions & 1 deletion .worktrees/gh-pages
Submodule gh-pages deleted from 4e1c0f
33 changes: 31 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ let package = Package(
name: "KeyPathHelper",
targets: ["KeyPathHelper"]
),
.executable(
name: "KeyPathOutputBridge",
targets: ["KeyPathOutputBridge"]
),
.executable(
name: "KeyPathKanataLauncher",
targets: ["KeyPathKanataLauncher"]
),
.executable(
name: "smappservice-poc",
targets: ["SMAppServicePOC"]
Expand All @@ -46,7 +54,7 @@ let package = Package(
targets: ["KeyPathPluginKit"]
),
.executable(
name: "keypath",
name: "keypath-cli",
targets: ["KeyPathCLI"]
),
.library(
Expand Down Expand Up @@ -153,7 +161,7 @@ let package = Package(
// Privileged helper executable
.executableTarget(
name: "KeyPathHelper",
dependencies: [],
dependencies: ["KeyPathCore"],
path: "Sources/KeyPathHelper",
exclude: [
"Info.plist",
Expand All @@ -164,6 +172,27 @@ let package = Package(
.swiftLanguageMode(.v6)
]
),
.executableTarget(
name: "KeyPathOutputBridge",
dependencies: ["KeyPathCore"],
path: "Sources/KeyPathOutputBridge",
exclude: [
"Info.plist",
"com.keypath.output-bridge.plist",
"KeyPathOutputBridge.entitlements"
],
swiftSettings: [
.swiftLanguageMode(.v6)
]
),
.executableTarget(
name: "KeyPathKanataLauncher",
dependencies: ["KeyPathCore"],
path: "Sources/KeyPathKanataLauncher",
swiftSettings: [
.swiftLanguageMode(.v6)
]
),
// SMAppService POC test utility
.executableTarget(
name: "SMAppServicePOC",
Expand Down
Loading
Loading