-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvcpkg.json
More file actions
50 lines (50 loc) · 1.38 KB
/
vcpkg.json
File metadata and controls
50 lines (50 loc) · 1.38 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
48
49
50
{
"name": "izengine",
"version": "1.0.0",
"description": "A modern cross-platform engine framework for creating modded game clients.",
"homepage": "https://github.com/Iswenzz/IzEngine",
"features": {
"windows": {
"description": "Build Windows",
"dependencies": [
{ "name": "imgui", "features": ["win32-binding"] }
]
},
"dx9": {
"description": "Build DX9",
"dependencies": [
{ "name": "imgui", "features": ["dx9-binding"] },
"directxsdk"
]
},
"cef": {
"description": "Build CEF",
"dependencies": ["cef"]
},
"tests": {
"description": "Build tests",
"dependencies": ["gtest"]
}
},
"dependencies": [
{ "name": "curl", "features": ["non-http", "openssl", "ssh"], "default-features": false },
"glm",
{ "name": "imgui", "features": ["club", "markdown"] },
"implot",
"libzippp",
"nlohmann-json",
"polyhook2"
],
"overrides": [
{ "name": "cef", "version": "142.0.17" },
{ "name": "curl", "version": "8.14.1" },
{ "name": "directxsdk", "version-string": "jun10#8" },
{ "name": "glm", "version": "1.0.1#2" },
{ "name": "gtest", "version": "1.14.0#1" },
{ "name": "imgui", "version": "1.92.3#1" },
{ "name": "implot", "version": "0.16#1" },
{ "name": "libzippp", "version": "7.1-1.10.1"},
{ "name": "nlohmann-json", "version": "3.11.3" },
{ "name": "polyhook2", "version": "2024-02-08" }
]
}