-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathproject.yml
More file actions
83 lines (81 loc) · 2.63 KB
/
project.yml
File metadata and controls
83 lines (81 loc) · 2.63 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
name: GLTFQuickLook
options:
bundleIdPrefix: com.hectorlizard
settings:
CODE_SIGN_IDENTITY: "-"
MARKETING_VERSION: "1.0"
CURRENT_PROJECT_VERSION: "1"
packages:
GLTFSceneKit:
url: https://github.com/magicien/GLTFSceneKit.git
branch: master
targets:
GLTFQuickLook:
type: application
platform: macOS
deploymentTarget: "12.0"
sources: App
settings:
PRODUCT_BUNDLE_IDENTIFIER: com.hectorlizard.GLTFQuickLook
info:
path: App/Info.plist
properties:
LSUIElement: true
UTExportedTypeDeclarations:
- UTTypeIdentifier: org.khronos.gltf
UTTypeConformsTo: [public.data]
UTTypeDescription: glTF Document
UTTypeTagSpecification:
public.filename-extension: [gltf]
public.mime-type: [model/gltf+json]
- UTTypeIdentifier: org.khronos.glb
UTTypeConformsTo: [public.data]
UTTypeDescription: glTF Binary Document
UTTypeTagSpecification:
public.filename-extension: [glb]
public.mime-type: [model/gltf-binary]
dependencies:
- target: GLTFPreview
- target: GLTFThumbnail
GLTFPreview:
type: app-extension
platform: macOS
deploymentTarget: "12.0"
sources: PreviewExtension
settings:
PRODUCT_BUNDLE_IDENTIFIER: com.hectorlizard.GLTFQuickLook.GLTFPreview
ENABLE_HARDENED_RUNTIME: YES
ENABLE_APP_SANDBOX: YES
info:
path: PreviewExtension/Info.plist
properties:
CFBundleDisplayName: GLTF Preview
NSExtension:
NSExtensionAttributes:
QLSupportedContentTypes: [org.khronos.gltf, org.khronos.glb]
QLSupportsSearchableItems: true
NSExtensionPointIdentifier: com.apple.quicklook.preview
NSExtensionPrincipalClass: $(PRODUCT_MODULE_NAME).PreviewViewController
dependencies:
- package: GLTFSceneKit
GLTFThumbnail:
type: app-extension
platform: macOS
deploymentTarget: "12.0"
sources: ThumbnailExtension
settings:
PRODUCT_BUNDLE_IDENTIFIER: com.hectorlizard.GLTFQuickLook.GLTFThumbnail
ENABLE_HARDENED_RUNTIME: YES
ENABLE_APP_SANDBOX: YES
info:
path: ThumbnailExtension/Info.plist
properties:
CFBundleDisplayName: GLTF Thumbnail
NSExtension:
NSExtensionAttributes:
QLSupportedContentTypes: [org.khronos.gltf, org.khronos.glb]
QLThumbnailMinimumDimension: 0
NSExtensionPointIdentifier: com.apple.quicklook.thumbnail
NSExtensionPrincipalClass: $(PRODUCT_MODULE_NAME).ThumbnailProvider
dependencies:
- package: GLTFSceneKit