-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcpkg.json
46 lines (46 loc) · 1.02 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
{
"name": "chip8topia",
"version-string": "1.0.0",
"builtin-baseline": "42bb0d9e8d4cf33485afb9ee2229150f79f61a1f",
"description": [
"A CHIP-8 emulator written in C++ for Windows, Linux, and the Web."
],
"homepage": "https://github.com/Im-Rises/Chip8topia/",
"documentation": "https://github.com/Im-Rises/Chip8topia/README.md",
"supports": "windows, linux, emscripten",
"dependencies": [
{
"name": "sdl2",
"version>=": "2.30.0",
"platform": "!emscripten"
},
{
"name": "glad",
"version>=": "0.1.36",
"platform": "!emscripten"
},
{
"name": "imgui",
"version>=": "1.90#3",
"features": [
"sdl2-binding",
"opengl3-binding",
"docking-experimental"
]
},
{
"name": "fmt",
"version>=": "10.2.1"
},
{
"name": "spdlog",
"version>=": "1.13.0",
"platform": "!emscripten"
},
{
"name": "stb",
"version>=": "2023-04-11#1",
"platform": "!emscripten"
}
]
}