-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
87 lines (81 loc) · 2.62 KB
/
Copy pathproject.yml
File metadata and controls
87 lines (81 loc) · 2.62 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: MXMasterInput
options:
createIntermediateGroups: true
deploymentTarget:
macOS: "15.0"
packages:
Sparkle:
url: https://github.com/sparkle-project/Sparkle
exactVersion: 2.9.4
settings:
base:
CLANG_ENABLE_MODULES: YES
MACOSX_DEPLOYMENT_TARGET: "15.0"
SWIFT_VERSION: "6.0"
SWIFT_STRICT_CONCURRENCY: minimal
targets:
MXMasterInput:
type: application
platform: macOS
sources:
- path: Sources/MXMasterInput
info:
path: Sources/MXMasterInput/Info.plist
properties:
CFBundleDisplayName: MX Master Input
CFBundleShortVersionString: "0.1.3"
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
LSApplicationCategoryType: public.app-category.utilities
LSUIElement: true
SUAutomaticallyUpdate: true
SUEnableAutomaticChecks: true
SUFeedURL: https://github.com/mstallone/mx-master-input/releases/latest/download/appcast.xml
SUPublicEDKey: UABTvdTVnMHNzqLh/IThuv5qtN7eCBK2dD1ztAtXk/o=
settings:
base:
CURRENT_PROJECT_VERSION: "0.1.3"
PRODUCT_BUNDLE_IDENTIFIER: com.mattstallone.mxmasterinput
PRODUCT_NAME: MXMasterInput
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
SWIFT_OBJC_BRIDGING_HEADER: Sources/MXMasterInput/NativeBridge/MXNativeBridge.h
ENABLE_APP_SANDBOX: NO
ENABLE_HARDENED_RUNTIME: YES
CODE_SIGN_STYLE: Automatic
dependencies:
- sdk: AppKit.framework
- sdk: ApplicationServices.framework
- sdk: Carbon.framework
- sdk: IOKit.framework
- sdk: ServiceManagement.framework
- package: Sparkle
MXMasterInputTests:
type: bundle.unit-test
platform: macOS
sources:
- path: Tests/MXMasterInputTests
- path: Sources/MXMasterInput/Gestures/ContinuousGestureRecognizer.swift
- path: Sources/MXMasterInput/Actions/SystemActionController.swift
- path: Sources/MXMasterInput/HID/HIDPPPacket.swift
- path: Sources/MXMasterInput/HID/MXMasterModels.swift
- path: Sources/MXMasterInput/HID/MXMasterSession.swift
- path: Sources/MXMasterInput/NativeBridge
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.mattstallone.mxmasterinput.tests
SWIFT_OBJC_BRIDGING_HEADER: Sources/MXMasterInput/NativeBridge/MXNativeBridge.h
TEST_HOST: ""
BUNDLE_LOADER: ""
dependencies:
- sdk: ApplicationServices.framework
- sdk: Carbon.framework
- sdk: IOKit.framework
schemes:
MXMasterInput:
build:
targets:
MXMasterInput: all
MXMasterInputTests:
- test
test:
targets:
- MXMasterInputTests