-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
106 lines (100 loc) · 2.8 KB
/
Copy pathproject.yml
File metadata and controls
106 lines (100 loc) · 2.8 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
name: Sigil
options:
bundleIdPrefix: com.lucesumbrarum
deploymentTarget:
macOS: "14.0"
developmentLanguage: en
defaultConfig: Debug
generateEmptyDirectories: true
groupSortPosition: top
configs:
Debug: debug
Release: release
settings:
base:
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "14.0"
DEAD_CODE_STRIPPING: YES
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: FDMSRXXN73
SWIFT_STRICT_CONCURRENCY: targeted
GCC_TREAT_WARNINGS_AS_ERRORS: NO
SWIFT_TREAT_WARNINGS_AS_ERRORS: NO
configs:
Debug:
ONLY_ACTIVE_ARCH: YES
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
ENABLE_HARDENED_RUNTIME: NO
# Ad-hoc sign for local dev so we don't need a cert for every build.
CODE_SIGN_IDENTITY: "-"
Release:
SWIFT_OPTIMIZATION_LEVEL: "-O"
ENABLE_HARDENED_RUNTIME: YES
# Direct-distribution signing (Developer ID, NOT "Apple Distribution" —
# "Apple Distribution" is for the Mac App Store).
CODE_SIGN_IDENTITY: "Developer ID Application"
targets:
Sigil:
type: application
platform: macOS
deploymentTarget: "14.0"
sources:
- path: Sigil
info:
path: Sigil/Info.plist
properties:
CFBundleDisplayName: Sigil
CFBundleName: Sigil
CFBundleShortVersionString: "1.0.0"
CFBundleVersion: "1"
CFBundleExecutable: $(EXECUTABLE_NAME)
CFBundleIdentifier: $(PRODUCT_BUNDLE_IDENTIFIER)
CFBundlePackageType: APPL
LSMinimumSystemVersion: "14.0"
LSApplicationCategoryType: public.app-category.utilities
NSHumanReadableCopyright: "Copyright © 2026 Luces Umbrarum. All rights reserved."
UIDesignRequiresCompatibility: true
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.lucesumbrarum.sigil
PRODUCT_NAME: Sigil
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME: AccentColor
GENERATE_INFOPLIST_FILE: NO
ENABLE_PREVIEWS: YES
COMBINE_HIDPI_IMAGES: YES
MARKETING_VERSION: "1.0.0"
CURRENT_PROJECT_VERSION: "1"
SigilTests:
type: bundle.unit-test
platform: macOS
deploymentTarget: "14.0"
sources:
- path: SigilTests
dependencies:
- target: Sigil
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.lucesumbrarum.sigil.tests
GENERATE_INFOPLIST_FILE: YES
BUNDLE_LOADER: $(TEST_HOST)
TEST_HOST: $(BUILT_PRODUCTS_DIR)/Sigil.app/Contents/MacOS/Sigil
schemes:
Sigil:
build:
targets:
Sigil: all
SigilTests: [test]
run:
config: Debug
test:
config: Debug
gatherCoverageData: false
targets:
- SigilTests
profile:
config: Release
analyze:
config: Debug
archive:
config: Release