-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.yml
More file actions
67 lines (62 loc) · 1.65 KB
/
Copy pathproject.yml
File metadata and controls
67 lines (62 loc) · 1.65 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
name: CC Settings
options:
bundleIdPrefix: com.ae
deploymentTarget:
macOS: "26.0"
xcodeVersion: "16.0"
createIntermediateGroups: true
developmentLanguage: en
settings:
base:
SWIFT_VERSION: "6.0"
MACOSX_DEPLOYMENT_TARGET: "26.0"
CODE_SIGN_IDENTITY: "-"
CODE_SIGNING_REQUIRED: "NO"
CODE_SIGN_ENTITLEMENTS: "CC Settings/Resources/CC_Settings.entitlements"
INFOPLIST_FILE: "CC Settings/Resources/Info.plist"
PRODUCT_BUNDLE_IDENTIFIER: com.ae.ccsettings
MARKETING_VERSION: "1.5.1"
CURRENT_PROJECT_VERSION: "23"
ENABLE_APP_SANDBOX: "NO"
packages:
swift-markdown:
url: https://github.com/apple/swift-markdown
exactVersion: 0.7.3
Sparkle:
url: https://github.com/sparkle-project/Sparkle
exactVersion: 2.9.1
targets:
CC Settings:
type: application
platform: macOS
sources:
- path: CC Settings
excludes:
- Resources/Info.plist
- Resources/CC_Settings.entitlements
resources:
- path: CC Settings/Resources/Assets.xcassets
dependencies:
- package: swift-markdown
product: Markdown
- package: Sparkle
product: Sparkle
settings:
base:
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
GENERATE_INFOPLIST_FILE: "NO"
LD_RUNPATH_SEARCH_PATHS: "$(inherited) @executable_path/../Frameworks"
CC SettingsTests:
type: bundle.unit-test
platform: macOS
sources:
- path: CC SettingsTests
dependencies:
- target: CC Settings
CC SettingsUITests:
type: bundle.ui-testing
platform: macOS
sources:
- path: CC SettingsUITests
dependencies:
- target: CC Settings