-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
61 lines (57 loc) · 1.59 KB
/
project.yml
File metadata and controls
61 lines (57 loc) · 1.59 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
name: DroboBridge
options:
bundleIdPrefix: com.drobobridge
deploymentTarget:
macOS: "13.0"
xcodeVersion: "15.0"
generateEmptyDirectories: true
settings:
base:
MARKETING_VERSION: "1.0.0"
CURRENT_PROJECT_VERSION: "1"
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "13.0"
targets:
DroboBridge:
type: application
platform: macOS
sources:
- path: Sources
excludes:
- "**/.DS_Store"
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.drobobridge.app
GENERATE_INFOPLIST_FILE: YES
PRODUCT_NAME: DroboBridge
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
CODE_SIGN_ENTITLEMENTS: DroboBridge.entitlements
CODE_SIGN_STYLE: Automatic
CODE_SIGN_IDENTITY: "-"
ENABLE_APP_SANDBOX: NO
COMBINE_HIDPI_IMAGES: YES
INFOPLIST_KEY_LSApplicationCategoryType: "public.app-category.utilities"
INFOPLIST_KEY_NSHumanReadableCopyright: "Copyright © 2026 DroboBridge. All rights reserved."
INFOPLIST_KEY_CFBundleDisplayName: DroboBridge
dependencies:
- package: ZIPFoundation
- sdk: IOKit.framework
- sdk: DiskArbitration.framework
entitlements:
path: DroboBridge.entitlements
DroboBridgeTests:
type: bundle.unit-test
platform: macOS
sources:
- path: Tests
excludes:
- "**/.DS_Store"
dependencies:
- target: DroboBridge
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.drobobridge.tests
packages:
ZIPFoundation:
url: https://github.com/weichsel/ZIPFoundation.git
from: "0.9.0"