-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
80 lines (73 loc) · 1.87 KB
/
Copy pathproject.yml
File metadata and controls
80 lines (73 loc) · 1.87 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: PhotoDropMac
options:
deploymentTarget:
macOS: "14.0"
createIntermediateGroups: true
generateEmptyDirectories: true
groupSortPosition: top
settings:
base:
SWIFT_VERSION: "6.0"
ENABLE_HARDENED_RUNTIME: NO
CODE_SIGN_STYLE: Manual
CODE_SIGN_IDENTITY: "-"
DEVELOPMENT_TEAM: ""
configs:
Debug:
ENABLE_TESTABILITY: YES
packages:
ArgumentParser:
url: https://github.com/apple/swift-argument-parser
from: "1.3.0"
targets:
PhotoDropMac:
type: application
platform: macOS
sources:
- path: Sources/PhotoDropMac
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.tsvb.PhotoDropMac
PRODUCT_NAME: PhotoDropMac
MARKETING_VERSION: "0.0.1"
CURRENT_PROJECT_VERSION: "1"
GENERATE_INFOPLIST_FILE: YES
INFOPLIST_KEY_LSApplicationCategoryType: public.app-category.photography
INFOPLIST_KEY_NSPrincipalClass: NSApplication
INFOPLIST_KEY_NSHumanReadableCopyright: ""
CODE_SIGN_ENTITLEMENTS: PhotoDropMac.entitlements
scheme:
testTargets:
- PhotoDropMacTests
gatherCoverageData: true
PhotoDropMacTests:
type: bundle.unit-test
platform: macOS
sources:
- path: Tests/PhotoDropMacTests
dependencies:
- target: PhotoDropMac
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.tsvb.PhotoDropMacTests
GENERATE_INFOPLIST_FILE: YES
# Headless command-line tool. Compiles the shared Core/ sources (engines +
# pure logic) plus the CLI front-end; never the UI.
photodrop:
type: tool
platform: macOS
sources:
- path: Sources/PhotoDropMac/Core
- path: Sources/PhotoDropCLI
dependencies:
- package: ArgumentParser
settings:
base:
PRODUCT_NAME: photodrop
schemes:
photodrop:
build:
targets:
photodrop: all
run:
config: Debug