-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcpkg.json
49 lines (49 loc) · 1.56 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
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"dependencies": ["spdlog", "mrowr-string-format"],
"features": {
"nana": {
"description": "Build with Nana GUI library",
"dependencies": ["nana"]
},
"fltk": {
"description": "Build with FLTK GUI library",
"dependencies": ["fltk"]
},
"gtkmm": {
"description": "Build with GTKMM GUI library",
"dependencies": ["gtkmm", "pkgconf"]
},
"wxwidgets": {
"description": "Build with wxWidgets GUI library",
"dependencies": ["wxwidgets"]
},
"qt": {
"description": "Build with Qt GUI library",
"dependencies": ["qtbase"]
},
"imgui-glfw3-opengl": {
"description": "Build with Dear ImGUI GUI library and GLFW3 and OpenGL3 bindings",
"dependencies": [
{
"name": "imgui",
"features": ["glfw-binding", "opengl3-binding"]
},
"glfw3",
"opengl"
]
},
"imgui-sdl2-opengl": {
"description": "Build with Dear ImGUI GUI library with SDL2 and OpenGL3 bindings",
"dependencies": [
{
"name": "imgui",
"features": ["sdl2-binding", "opengl3-binding"]
},
"sdl2",
"glew",
"opengl"
]
}
}
}