-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.yml
More file actions
52 lines (49 loc) · 1.28 KB
/
project.yml
File metadata and controls
52 lines (49 loc) · 1.28 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
name: Canopy
options:
bundleIdPrefix: com.canopy
deploymentTarget:
macOS: "14.0"
xcodeVersion: "16.0"
generateEmptyDirectories: true
packages:
SwiftTerm:
url: https://github.com/migueldeicaza/SwiftTerm.git
from: "1.2.0"
targets:
Canopy:
type: application
platform: macOS
sources:
- Canopy
- path: Resources
buildPhase: resources
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.canopy.app
PRODUCT_NAME: Canopy
MARKETING_VERSION: "0.1.0"
CURRENT_PROJECT_VERSION: "1"
GENERATE_INFOPLIST_FILE: true
INFOPLIST_KEY_LSApplicationCategoryType: "public.app-category.developer-tools"
INFOPLIST_KEY_CFBundleDisplayName: Canopy
SWIFT_VERSION: "6.0"
MACOSX_DEPLOYMENT_TARGET: "14.0"
ENABLE_HARDENED_RUNTIME: true
CODE_SIGN_ENTITLEMENTS: Canopy/App/Canopy.entitlements
SWIFT_STRICT_CONCURRENCY: complete
dependencies:
- package: SwiftTerm
entitlements:
path: Canopy/App/Canopy.entitlements
properties:
com.apple.security.app-sandbox: false
CanopyTests:
type: bundle.unit-test
platform: macOS
sources:
- Tests
dependencies:
- target: Canopy
settings:
base:
SWIFT_VERSION: "6.0"