-
Notifications
You must be signed in to change notification settings - Fork 0
/
vcpkg.json
53 lines (53 loc) · 1.17 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
{
"name": "monado",
"homepage": "https://monado.freedesktop.org",
"version-string": "24.0",
"dependencies": [
{
"name": "wil",
"platform": "windows"
},
{
"name": "pthreads",
"platform": "windows"
},
"cjson",
"eigen3",
"glslang",
"vulkan"
],
"default-features": [
"usb",
"gui"
],
"features": {
"usb": {
"description": "Support USB device drivers",
"dependencies": [
"libusb",
"hidapi",
{
"name": "zlib",
"platform": "linux"
}
]
},
"gui": {
"description": "Debug GUI support",
"dependencies": [
{
"name": "sdl2",
"features": [
"vulkan"
]
}
]
},
"tracking": {
"description": "OpenCV-based tracking features",
"dependencies": [
"opencv"
]
}
}
}