-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.yml
More file actions
112 lines (107 loc) · 3.09 KB
/
Copy pathproject.yml
File metadata and controls
112 lines (107 loc) · 3.09 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
name: GLBPreview
options:
bundleIdPrefix: com.laurie
deploymentTarget:
macOS: "13.0"
xcodeVersion: "15.0"
schemes:
GLBPreview:
build:
targets:
GLBPreview: all
run:
config: Debug
packages:
GLTFKit2:
url: https://github.com/warrenm/GLTFKit2
from: "0.5.0"
targets:
GLBPreview:
type: application
platform: macOS
sources: [GLBPreview]
info:
path: GLBPreview/Info.plist
properties:
CFBundleDocumentTypes:
- CFBundleTypeName: GL Transmission Format Binary
CFBundleTypeRole: Viewer
LSHandlerRank: Default
LSItemContentTypes:
- org.khronos.glb
NSMainStoryboardFile: ""
NSPrincipalClass: NSApplication
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.laurie.GLBPreview
MARKETING_VERSION: "1.0"
CURRENT_PROJECT_VERSION: "1"
GENERATE_INFOPLIST_FILE: NO
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: 6XPHVL44C5
dependencies:
- target: PreviewExtension
embed: true
- target: ThumbnailExtension
embed: true
- package: GLTFKit2
PreviewExtension:
type: app-extension
platform: macOS
sources:
- path: PreviewExtension
includes:
- "*.swift"
- "*.html"
- "*.js"
entitlements:
path: PreviewExtension/PreviewExtension.entitlements
properties:
com.apple.security.app-sandbox: true
com.apple.security.network.client: true
info:
path: PreviewExtension/Info.plist
properties:
CFBundleDisplayName: GLB Preview
NSExtension:
NSExtensionPointIdentifier: com.apple.quicklook.preview
NSExtensionPrincipalClass: "$(PRODUCT_MODULE_NAME).PreviewViewController"
NSExtensionAttributes:
QLSupportedContentTypes:
- org.khronos.glb
QLSupportsSearchableItems: false
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.laurie.GLBPreview.PreviewExtension
GENERATE_INFOPLIST_FILE: NO
SKIP_INSTALL: YES
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: 6XPHVL44C5
ThumbnailExtension:
type: app-extension
platform: macOS
sources: [ThumbnailExtension]
entitlements:
path: ThumbnailExtension/ThumbnailExtension.entitlements
properties:
com.apple.security.app-sandbox: true
info:
path: ThumbnailExtension/Info.plist
properties:
CFBundleDisplayName: GLB Thumbnail
NSExtension:
NSExtensionPointIdentifier: com.apple.quicklook.thumbnail
NSExtensionPrincipalClass: "$(PRODUCT_MODULE_NAME).ThumbnailProvider"
NSExtensionAttributes:
QLSupportedContentTypes:
- org.khronos.glb
QLSupportsSearchableItems: false
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.laurie.GLBPreview.ThumbnailExtension
GENERATE_INFOPLIST_FILE: NO
SKIP_INSTALL: YES
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: 6XPHVL44C5
dependencies:
- package: GLTFKit2