-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
53 lines (49 loc) · 1.24 KB
/
project.yml
File metadata and controls
53 lines (49 loc) · 1.24 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
name: menu-bar-executor
options:
bundleIdPrefix: com.cai
deploymentTarget:
macOS: "12.0"
xcodeVersion: "15.0"
settings:
base:
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "12.0"
packages:
KeyboardShortcuts:
url: https://github.com/sindresorhus/KeyboardShortcuts
from: "2.0.0"
targets:
MenuBarExecutor:
type: application
platform: macOS
sources:
- Sources
- Sources/App/Views
- Resources/Assets.xcassets
resources:
- Resources/commands.json
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.cai.menu-bar-executor
PRODUCT_NAME: MenuBarExecutor
INFOPLIST_FILE: Resources/Info.plist
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
CODE_SIGN_IDENTITY: "-"
CODE_SIGN_STYLE: Manual
ENABLE_HARDENED_RUNTIME: NO
COMBINE_HIDPI_IMAGES: YES
dependencies:
- package: KeyboardShortcuts
MenuBarExecutorTests:
type: bundle.unit-test
platform: macOS
sources:
- Tests
dependencies:
- target: MenuBarExecutor
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.cai.menu-bar-executor.tests
GENERATE_INFOPLIST_FILE: YES
CODE_SIGN_IDENTITY: "-"
CODE_SIGN_STYLE: Manual