-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
80 lines (74 loc) · 1.74 KB
/
project.yml
File metadata and controls
80 lines (74 loc) · 1.74 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
name: Reader
options:
bundleIdPrefix: com.jefflarson
deploymentTarget:
macOS: "13.0"
createIntermediateGroups: true
groupSortPosition: top
generateEmptyDirectories: true
settings:
base:
MARKETING_VERSION: "1.0"
CURRENT_PROJECT_VERSION: "1"
SWIFT_VERSION: "5.9"
DEVELOPMENT_LANGUAGE: en
ENABLE_HARDENED_RUNTIME: YES
CODE_SIGN_STYLE: Automatic
CODE_SIGN_IDENTITY: "-"
DEAD_CODE_STRIPPING: YES
SWIFT_TREAT_WARNINGS_AS_ERRORS: YES
GCC_TREAT_WARNINGS_AS_ERRORS: YES
packages:
Sparkle:
url: https://github.com/sparkle-project/Sparkle
from: 2.6.4
targets:
Reader:
type: application
platform: macOS
deploymentTarget: "13.0"
sources:
- path: Sources/Reader
- path: Resources/AppIcon.icns
buildPhase: resources
dependencies:
- package: Sparkle
settings:
base:
PRODUCT_NAME: Reader
PRODUCT_BUNDLE_IDENTIFIER: com.jefflarson.Reader
INFOPLIST_FILE: Resources/Info.plist
LD_RUNPATH_SEARCH_PATHS: "@executable_path/../Frameworks"
COMBINE_HIDPI_IMAGES: YES
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
ENABLE_PREVIEWS: YES
ReaderTests:
type: bundle.unit-test
platform: macOS
deploymentTarget: "13.0"
sources:
- path: Tests/ReaderTests
dependencies:
- target: Reader
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.jefflarson.ReaderTests
GENERATE_INFOPLIST_FILE: YES
schemes:
Reader:
build:
targets:
Reader: all
ReaderTests: [test]
run:
config: Debug
test:
config: Debug
targets:
- ReaderTests
profile:
config: Release
analyze:
config: Debug
archive:
config: Release