-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
110 lines (104 loc) · 3.01 KB
/
project.yml
File metadata and controls
110 lines (104 loc) · 3.01 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: ExternalScreen
options:
bundleIdPrefix: com.externalscreen
deploymentTarget:
macOS: "14.0"
iOS: "17.0"
xcodeVersion: "15.0"
generateEmptyDirectories: true
groupSortPosition: top
settings:
base:
SWIFT_VERSION: "5.9"
ENABLE_USER_SCRIPT_SANDBOXING: NO
DEVELOPMENT_TEAM: YOUR_TEAM_ID_HERE
targets:
ExternalScreenMac:
type: application
platform: macOS
deploymentTarget: "14.0"
sources:
- path: ExternalScreenMac/Sources
type: group
- path: Shared
type: group
- path: ExternalScreenMac/Vendor/PeerTalk
type: group
excludes:
- "Info.plist"
- "*.plist"
compilerFlags:
- "-fno-objc-arc"
- path: ExternalScreenMac/Resources/Assets.xcassets
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.externalscreen.mac
INFOPLIST_FILE: ExternalScreenMac/Resources/Info.plist
CODE_SIGN_ENTITLEMENTS: ExternalScreenMac/Resources/ExternalScreenMac.entitlements
SWIFT_OBJC_BRIDGING_HEADER: ExternalScreenMac/ExternalScreenMac-Bridging-Header.h
LD_RUNPATH_SEARCH_PATHS: "@executable_path/../Frameworks"
COMBINE_HIDPI_IMAGES: YES
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
CODE_SIGN_STYLE: Automatic
MACOSX_DEPLOYMENT_TARGET: "14.0"
dependencies:
- sdk: ScreenCaptureKit.framework
- sdk: VideoToolbox.framework
- sdk: CoreMedia.framework
- sdk: CoreGraphics.framework
- sdk: AppKit.framework
ExternalScreenIOS:
type: application
platform: iOS
deploymentTarget: "17.0"
sources:
- path: ExternalScreenIOS/Sources
type: group
- path: Shared
type: group
- path: ExternalScreenIOS/Vendor/PeerTalk
type: group
excludes:
- "Info.plist"
- "*.plist"
compilerFlags:
- "-fno-objc-arc"
- path: ExternalScreenIOS/Resources/Assets.xcassets
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.externalscreen.ios
INFOPLIST_FILE: ExternalScreenIOS/Resources/Info.plist
CODE_SIGN_ENTITLEMENTS: ExternalScreenIOS/Resources/ExternalScreenIOS.entitlements
SWIFT_OBJC_BRIDGING_HEADER: ExternalScreenIOS/ExternalScreenIOS-Bridging-Header.h
LD_RUNPATH_SEARCH_PATHS: "@executable_path/Frameworks"
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
CODE_SIGN_STYLE: Automatic
TARGETED_DEVICE_FAMILY: "2"
IPHONEOS_DEPLOYMENT_TARGET: "17.0"
dependencies:
- sdk: Metal.framework
- sdk: MetalKit.framework
- sdk: VideoToolbox.framework
- sdk: CoreMedia.framework
- sdk: UIKit.framework
schemes:
ExternalScreenMac:
build:
targets:
ExternalScreenMac: all
run:
config: Debug
profile:
config: Release
archive:
config: Release
ExternalScreenIOS:
build:
targets:
ExternalScreenIOS: all
run:
config: Debug
profile:
config: Release
archive:
config: Release