-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathproject.yml
More file actions
79 lines (75 loc) · 2.08 KB
/
project.yml
File metadata and controls
79 lines (75 loc) · 2.08 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: GhostPepper
options:
bundleIdPrefix: com.github.matthartman
deploymentTarget:
macOS: "14.0"
xcodeVersion: "16.0"
packages:
WhisperKit:
url: https://github.com/argmaxinc/WhisperKit.git
from: "0.16.0"
FluidAudio:
url: https://github.com/FluidInference/FluidAudio.git
from: "0.13.6"
LLM.swift:
url: https://github.com/obra/LLM.swift.git
branch: main
Sparkle:
url: https://github.com/sparkle-project/Sparkle.git
from: "2.6.0"
targets:
GhostPepper:
type: application
platform: macOS
configFiles:
Debug: Config/Signing.xcconfig
Release: Config/Signing.xcconfig
sources:
- GhostPepper
settings:
base:
INFOPLIST_FILE: GhostPepper/Info.plist
CODE_SIGN_ENTITLEMENTS: GhostPepper/GhostPepper.entitlements
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
PRODUCT_BUNDLE_IDENTIFIER: com.github.matthartman.ghostpepper
ENABLE_APP_SANDBOX: NO
CODE_SIGN_ALLOW_ENTITLEMENTS_MODIFICATION: YES
ENABLE_HARDENED_RUNTIME: NO
dependencies:
- package: WhisperKit
- package: FluidAudio
- package: LLM.swift
product: LLM
- package: Sparkle
entitlements:
path: GhostPepper/GhostPepper.entitlements
properties:
com.apple.security.device.audio-input: true
GhostPepperTests:
type: bundle.unit-test
platform: macOS
sources:
- GhostPepperTests
dependencies:
- target: GhostPepper
settings:
base:
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/GhostPepper.app/Contents/MacOS/GhostPepper"
BUNDLE_LOADER: "$(TEST_HOST)"
GENERATE_INFOPLIST_FILE: YES
CleanupModelProbe:
type: tool
platform: macOS
sources:
- CleanupModelProbe
- CleanupModelProbeSupport
dependencies:
- package: LLM.swift
product: LLM
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.github.matthartman.ghostpepper.cleanup-model-probe
GENERATE_INFOPLIST_FILE: YES
LD_RUNPATH_SEARCH_PATHS:
- "$(inherited)"
- "@executable_path/Frameworks"