-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
68 lines (64 loc) · 1.86 KB
/
Copy pathproject.yml
File metadata and controls
68 lines (64 loc) · 1.86 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
name: QuickTasks
options:
bundleIdPrefix: com.malidyatech
deploymentTarget:
macOS: "14.0"
xcodeVersion: "16.0"
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "14.0"
CODE_SIGN_IDENTITY: "-"
CODE_SIGN_STYLE: Manual
PRODUCT_BUNDLE_IDENTIFIER: com.malidyatech.QuickTasks
packages:
KeyboardShortcuts:
url: https://github.com/sindresorhus/KeyboardShortcuts
from: "2.1.0"
targets:
QuickTasks:
type: application
platform: macOS
sources:
- path: QuickTasks
resources:
- path: QuickTasks/Assets.xcassets
- path: QuickTasks/Resources
settings:
base:
INFOPLIST_FILE: QuickTasks/Info.plist
CODE_SIGN_ENTITLEMENTS: QuickTasks/QuickTasks.entitlements
PRODUCT_NAME: QuickTasks
dependencies:
- package: KeyboardShortcuts
entitlements:
path: QuickTasks/QuickTasks.entitlements
info:
path: QuickTasks/Info.plist
properties:
CFBundleName: QuickTasks
CFBundleDisplayName: QuickTasks
CFBundleIdentifier: com.malidyatech.QuickTasks
CFBundleVersion: "1"
CFBundleShortVersionString: "1.0"
CFBundlePackageType: APPL
CFBundleExecutable: QuickTasks
LSMinimumSystemVersion: "14.0"
LSUIElement: true
NSHumanReadableCopyright: "Copyright © 2026 Malidya Tech. All rights reserved."
QuickTasksTests:
type: bundle.unit-test
platform: macOS
sources:
- path: QuickTasksTests
dependencies:
- target: QuickTasks
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.malidyatech.QuickTasksTests
CODE_SIGN_IDENTITY: "-"
CODE_SIGN_STYLE: Manual
GENERATE_INFOPLIST_FILE: YES
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/QuickTasks.app/Contents/MacOS/QuickTasks"
BUNDLE_LOADER: "$(TEST_HOST)"