-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
54 lines (54 loc) · 1.31 KB
/
project.yml
File metadata and controls
54 lines (54 loc) · 1.31 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
name: FluentKey
options:
bundleIdPrefix: com.fluentkey
deploymentTarget:
macOS: "13.0"
settings:
base:
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "13.0"
targets:
FluentKey:
type: application
platform: macOS
sources:
- path: Sources
info:
path: Sources/Resources/Info.plist
properties:
LSUIElement: true
CFBundleName: FluentKey
CFBundleDisplayName: FluentKey
CFBundleIdentifier: com.fluentkey.app
CFBundleShortVersionString: "0.1.0"
CFBundleVersion: "1"
NSHumanReadableCopyright: ""
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.fluentkey.app
CODE_SIGN_STYLE: Automatic
CODE_SIGN_IDENTITY: "-"
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
FluentKeyTests:
type: bundle.unit-test
platform: macOS
sources:
- path: Tests
dependencies:
- target: FluentKey
settings:
base:
BUNDLE_LOADER: "$(TEST_HOST)"
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/FluentKey.app/Contents/MacOS/FluentKey"
GENERATE_INFOPLIST_FILE: YES
CODE_SIGN_STYLE: Automatic
CODE_SIGN_IDENTITY: "-"
schemes:
FluentKey:
build:
targets:
FluentKey: all
FluentKeyTests: [test]
test:
targets:
- FluentKeyTests