-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
58 lines (56 loc) · 1.52 KB
/
project.yml
File metadata and controls
58 lines (56 loc) · 1.52 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
name: iQualize
options:
bundleIdPrefix: com.iqualize
deploymentTarget:
macOS: "14.0"
xcodeVersion: "16.0"
createIntermediateGroups: true
targets:
iQualize:
type: application
platform: macOS
sources:
- path: Sources/iQualize
excludes:
- Info.plist
info:
path: Sources/iQualize/Info.plist
properties:
CFBundleIdentifier: com.iqualize.app
CFBundleName: iQualize
CFBundleVersion: "0.1"
CFBundleShortVersionString: "0.1.0"
LSUIElement: true
NSAudioCaptureUsageDescription: "iQualize needs to capture system audio to apply equalizer effects."
NSMainNibFile: ""
NSPrincipalClass: NSApplication
settings:
base:
PRODUCT_NAME: iQualize
PRODUCT_BUNDLE_IDENTIFIER: com.iqualize.app
SWIFT_VERSION: "6.0"
MACOSX_DEPLOYMENT_TARGET: "14.0"
INFOPLIST_FILE: Sources/iQualize/Info.plist
GENERATE_INFOPLIST_FILE: false
CODE_SIGN_STYLE: Automatic
ENABLE_HARDENED_RUNTIME: true
configs:
Debug:
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
Release:
SWIFT_OPTIMIZATION_LEVEL: "-O"
dependencies:
- sdk: CoreAudio.framework
- sdk: AudioToolbox.framework
- sdk: AVFAudio.framework
- sdk: AppKit.framework
iQualizeTests:
type: bundle.unit-test
platform: macOS
sources:
- path: Tests/iQualizeTests
dependencies:
- target: iQualize
settings:
base:
SWIFT_VERSION: "6.0"