-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
44 lines (41 loc) · 1.27 KB
/
project.yml
File metadata and controls
44 lines (41 loc) · 1.27 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
name: FinderTools
options:
bundleIdPrefix: com.jacobmaynard
deploymentTarget:
macOS: "14.0"
xcodeVersion: "16.0"
settings:
base:
DEVELOPMENT_TEAM: J2BA26F2V7
CODE_SIGN_IDENTITY: "Apple Development"
CODE_SIGN_STYLE: Automatic
targets:
FinderTools:
type: application
platform: macOS
sources:
- FinderTools
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.jacobmaynard.FinderTools
INFOPLIST_FILE: FinderTools/Info.plist
CODE_SIGN_ENTITLEMENTS: FinderTools/FinderTools.entitlements
COMBINE_HIDPI_IMAGES: true
MACOSX_DEPLOYMENT_TARGET: "14.0"
SWIFT_VERSION: "5.0"
dependencies:
- target: FinderToolsExtension
FinderToolsExtension:
type: app-extension
platform: macOS
sources:
- FinderToolsExtension
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.jacobmaynard.FinderTools.FinderToolsExtension
INFOPLIST_FILE: FinderToolsExtension/Info.plist
CODE_SIGN_ENTITLEMENTS: FinderToolsExtension/FinderToolsExtension.entitlements
MACOSX_DEPLOYMENT_TARGET: "14.0"
SWIFT_VERSION: "5.0"
SKIP_INSTALL: true
LD_RUNPATH_SEARCH_PATHS: "$(inherited) @executable_path/../Frameworks @executable_path/../../../../Frameworks"