-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
75 lines (70 loc) · 1.99 KB
/
project.yml
File metadata and controls
75 lines (70 loc) · 1.99 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
name: CloudMount
options:
bundleIdPrefix: com.cloudmount
deploymentTarget:
macOS: "26.0"
xcodeVersion: "26"
defaultConfig: Debug
settings:
base:
SWIFT_VERSION: "6.0"
MACOSX_DEPLOYMENT_TARGET: "26.0"
ENABLE_HARDENED_RUNTIME: true
packages:
Sparkle:
url: https://github.com/sparkle-project/Sparkle
from: "2.0.0"
targets:
CloudMount:
type: application
platform: macOS
sources:
- path: CloudMount
excludes:
- "*.entitlements"
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.cloudmount.app
INFOPLIST_FILE: CloudMount/Info.plist
CODE_SIGN_ENTITLEMENTS: CloudMount/CloudMount.entitlements
CODE_SIGN_STYLE: Automatic
GENERATE_INFOPLIST_FILE: false
LD_RUNPATH_SEARCH_PATHS: "$(inherited) @executable_path/../Frameworks"
dependencies:
- target: CloudMountKit
embed: true
codeSign: true
- target: CloudMountExtension
embed: true
codeSign: true
- package: Sparkle
CloudMountExtension:
type: extensionkit-extension
platform: macOS
sources:
- path: CloudMountExtension
excludes:
- "*.entitlements"
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.cloudmount.app.extension
INFOPLIST_FILE: CloudMountExtension/Info.plist
CODE_SIGN_ENTITLEMENTS: CloudMountExtension/CloudMountExtension.entitlements
CODE_SIGN_STYLE: Automatic
GENERATE_INFOPLIST_FILE: true
LD_RUNPATH_SEARCH_PATHS: "$(inherited) @executable_path/../Frameworks @executable_path/../../../../Frameworks"
dependencies:
- target: CloudMountKit
embed: false
CloudMountKit:
type: framework
platform: macOS
sources:
- path: CloudMountKit
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.cloudmount.kit
INFOPLIST_FILE: CloudMountKit/Info.plist
GENERATE_INFOPLIST_FILE: false
DEFINES_MODULE: true
CODE_SIGN_STYLE: Automatic