-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
59 lines (54 loc) · 1.45 KB
/
project.yml
File metadata and controls
59 lines (54 loc) · 1.45 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
name: Mumble
packages:
TelemetryDeck:
url: https://github.com/TelemetryDeck/SwiftSDK
majorVersion: 2.0.0
options:
bundleIdPrefix: com.mumble
deploymentTarget:
macOS: "14.0"
xcodeVersion: "15.0"
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "14.0"
targets:
Mumble:
type: application
platform: macOS
deploymentTarget: "14.0"
sources:
- path: Mumble
info:
path: Mumble/Info.plist
properties:
NSMicrophoneUsageDescription: "Mumble needs microphone access to capture audio for speech-to-text dictation."
entitlements:
path: Mumble/Mumble.entitlements
dependencies:
- package: TelemetryDeck
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.mumble.app
INFOPLIST_FILE: Mumble/Info.plist
MARKETING_VERSION: "1.0.0"
CURRENT_PROJECT_VERSION: 1
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "14.0"
CODE_SIGN_ENTITLEMENTS: Mumble/Mumble.entitlements
GENERATE_INFOPLIST_FILE: false
ENABLE_HARDENED_RUNTIME: YES
MumbleTests:
type: bundle.unit-test
platform: macOS
sources:
- path: MumbleTests
dependencies:
- target: Mumble
settings:
base:
SWIFT_VERSION: "5.9"
GENERATE_INFOPLIST_FILE: true
BUNDLE_LOADER: "$(TEST_HOST)"
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/Mumble.app/Contents/MacOS/Mumble"