-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvcpkg.json
More file actions
47 lines (47 loc) · 1.03 KB
/
vcpkg.json
File metadata and controls
47 lines (47 loc) · 1.03 KB
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
{
"name": "newleaf",
"version": "0.2.0",
"description": "C++ game engine for 3d and 2d development",
"homepage": "https://github.com/kafkaphoenix/newleaf",
"license": "MIT",
"dependencies": [
"assimp",
"entt",
{
"name": "glad",
"features": [
"gl-api-46"
]
},
"glfw3",
"glm",
{
"name": "imgui",
"features": [
"docking-experimental",
"glfw-binding",
"opengl3-binding"
]
},
"nlohmann-json",
{
"name": "spdlog",
"features": [
"wchar"
]
},
"stb",
"catch2"
],
"overrides": [
{"name": "assimp", "version": "6.0.2#0"},
{"name": "entt", "version": "3.15.0#0"},
{"name": "glad", "version": "0.1.36#0"},
{"name": "glfw3", "version": "3.4#1"},
{"name": "glm", "version": "1.0.1#3"},
{"name": "imgui", "version": "1.91.9#0"},
{"name": "nlohmann-json", "version": "3.12.0#1"},
{"name": "spdlog", "version": "1.15.3#0"},
{"name": "stb", "version": "2024-07-29#1"}
]
}