-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathvcpkg.json
42 lines (42 loc) · 960 Bytes
/
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
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "optix-toolkit",
"description": "OptiX Toolkit libraries and examples",
"features": {
"otk-examples": {
"description": "Dependencies needed only by the examples",
"dependencies": [
"glad",
"glfw3",
{
"name": "imgui",
"features": [
"glfw-binding",
"opengl3-binding"
]
},
"rply",
"stb"
]
},
"otk-openexr": {
"description": "OpenEXR support",
"dependencies": [
"imath",
"openexr"
]
},
"otk-openimageio": {
"description": "OpenImageIO support for JPG and PNG files",
"dependencies": [
"openimageio"
]
},
"otk-tests": {
"description": "Dependencies needed only by the tests",
"dependencies": [
"gtest"
]
}
}
}