-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvcpkg.json
60 lines (60 loc) · 1.49 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
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "cloud-rendering",
"version": "0.1.0",
"dependencies": [
"boost-core",
"boost-algorithm",
"boost-filesystem",
"boost-iostreams",
{
"name": "boost-interprocess",
"platform": "windows"
},
{
"name": "dbus",
"default-features": false,
"features": [],
"platform": "linux"
},
{
"name": "sdl2",
"features": [ "vulkan", "x11", "wayland" ],
"platform": "linux"
},
{
"name": "sdl2",
"features": [ "vulkan" ],
"platform": "!linux"
},
"sdl2-image",
{
"name": "glfw3",
"platform": "!linux"
},
"tinyxml2",
{
"name": "libarchive",
"default-features": true,
"features": [ "bzip2", "lz4", "lzma", "zstd" ]
},
"shaderc",
"glm",
"tbb",
"jsoncpp",
"openexr",
"blosc"
],
"features": {
"tbb": {
"description": "Use TBB instead of OpenMP for multi-threading",
"dependencies": [
"tbb"
]
},
"tests": {
"description": "Unit test cases for the volumetric path tracing algorithms.",
"dependencies": [ "gtest" ]
}
}
}