-
Notifications
You must be signed in to change notification settings - Fork 21
/
vcpkg.json
105 lines (105 loc) · 2.28 KB
/
vcpkg.json
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
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "castor3d",
"version": "0.16.0",
"builtin-baseline": "11ed79186fe850bd3a98cfbf1854514d2b3070a2",
"dependencies": [
"convectionkernels",
"freetype",
"gli",
"meshoptimizer",
"mikktspace",
"minizip",
"msdfgen",
"vulkan-headers",
"zlib"
],
"default-features": [
"assimp",
"freeimage",
"glsl",
"gltf",
"vkfft"
],
"vcpkg-configuration": {
"overlay-ports": [
"./data/vcpkg/ports/ashes",
"./data/vcpkg/ports/draco",
"./data/vcpkg/ports/fastgltf",
"./data/vcpkg/ports/liblzma",
"./data/vcpkg/ports/rendergraph",
"./data/vcpkg/ports/shaderwriter"
]
},
"features": {
"assimp": {
"description": "Use Assimp library to import external scenes.",
"dependencies": [
"assimp"
]
},
"freeimage": {
"description": "Use FreeImage library over stb_image to import TIF, PNG or RAW images.",
"dependencies": [
"freeimage"
]
},
"glsl": {
"description": "Enable GLSL shaders import support.",
"dependencies": [
"glslang"
]
},
"gltf": {
"description": "Use fastgltf library to import glTF scenes.",
"dependencies": [
"fastgltf",
"simdjson"
]
},
"vkfft": {
"description": "Use VkFFT to compute Fast Fourier Transforms (Necessary for FFTOcean plugin).",
"dependencies": [
"vkfft"
]
},
"tools": {
"description": "Build tools projects.",
"dependencies": [
{
"name": "wxwidgets",
"platform": "!linux"
}
]
},
"demos": {
"description": "Build demo projects.",
"dependencies": [
{
"name": "wxwidgets",
"platform": "!linux"
}
]
},
"vcpkg-deps": {
"description": "Use vcpkg's ashes/rendergraph/shaderwriter.",
"dependencies": [
{
"name": "ashes",
"features": [
"vulkan"
]
},
"rendergraph",
{
"name": "shaderwriter",
"features": [
"spirv",
"glsl",
"hlsl"
]
}
]
}
}
}