-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.yml
More file actions
59 lines (59 loc) · 1.41 KB
/
Copy pathproject.yml
File metadata and controls
59 lines (59 loc) · 1.41 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
name: Barkeep
options:
bundleIdPrefix: is.ian
deploymentTarget:
macOS: "14.0"
createIntermediateGroups: true
settings:
base:
SWIFT_VERSION: "6.0"
MACOSX_DEPLOYMENT_TARGET: "14.0"
CLANG_ENABLE_MODULES: YES
ENABLE_HARDENED_RUNTIME: YES
CODE_SIGN_STYLE: Automatic
packages:
Sparkle:
url: https://github.com/sparkle-project/Sparkle
exactVersion: 2.9.6
targets:
Barkeep:
type: application
platform: macOS
sources:
- path: Sources/Barkeep
dependencies:
- package: Sparkle
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: is.ian.barkeep
PRODUCT_NAME: Barkeep
GENERATE_INFOPLIST_FILE: NO
INFOPLIST_FILE: Sources/Barkeep/Info.plist
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
MARKETING_VERSION: 0.1.0
CURRENT_PROJECT_VERSION: 1
SWIFT_STRICT_CONCURRENCY: complete
entitlements:
path: Sources/Barkeep/Barkeep.entitlements
properties:
com.apple.security.app-sandbox: false
BarkeepTests:
type: bundle.unit-test
platform: macOS
sources:
- path: Tests/BarkeepTests
dependencies:
- target: Barkeep
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: is.ian.barkeep.tests
GENERATE_INFOPLIST_FILE: YES
schemes:
Barkeep:
build:
targets:
Barkeep: all
BarkeepTests: [test]
test:
targets:
- BarkeepTests