-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
71 lines (68 loc) · 1.91 KB
/
project.yml
File metadata and controls
71 lines (68 loc) · 1.91 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
name: TabRecordApp
options:
bundleIdPrefix: com.tabrecord
deploymentTarget:
macOS: "13.0"
defaultConfig: Debug
xcodeVersion: "15.0"
generateEmptyDirectories: true
targets:
TabRecordApp:
type: application
platform: macOS
deploymentTarget: "13.0"
sources:
- path: TabRecordApp
settings:
base:
PRODUCT_NAME: TabRecord
PRODUCT_MODULE_NAME: TabRecordApp
PRODUCT_BUNDLE_IDENTIFIER: com.tabrecord.app
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "13.0"
INFOPLIST_FILE: TabRecordApp/Info.plist
CODE_SIGN_ENTITLEMENTS: TabRecordApp/TabRecord.entitlements
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: ""
ENABLE_HARDENED_RUNTIME: YES
COMBINE_HIDPI_IMAGES: YES
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
configs:
Debug:
DEBUG_INFORMATION_FORMAT: dwarf
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
SWIFT_ACTIVE_COMPILATION_CONDITIONS: DEBUG
Release:
DEBUG_INFORMATION_FORMAT: dwarf-with-dsym
SWIFT_OPTIMIZATION_LEVEL: "-O"
dependencies:
- sdk: ScreenCaptureKit.framework
- sdk: AVFoundation.framework
- sdk: AppKit.framework
- sdk: CoreMedia.framework
- sdk: CoreVideo.framework
- sdk: CoreAudio.framework
TabRecordAppTests:
type: bundle.unit-test
platform: macOS
deploymentTarget: "13.0"
sources:
- path: TabRecordAppTests
dependencies:
- target: TabRecordApp
settings:
base:
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "13.0"
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/TabRecord.app/Contents/MacOS/TabRecord"
BUNDLE_LOADER: "$(TEST_HOST)"
GENERATE_INFOPLIST_FILE: YES
schemes:
TabRecordApp:
build:
targets:
TabRecordApp: all
TabRecordAppTests: [test]
test:
targets:
- TabRecordAppTests