-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathvcpkg.json
98 lines (98 loc) · 1.86 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "atlas-engine",
"version-string": "0.2.0",
"port-version": 0,
"builtin-baseline": "821100d967e1737d96414a308e3f7cbe0d1abf18",
"homepage": "https://github.com/tippesi/Atlas-Engine",
"description": "Cross platform toy render engine supporting physically based rendering and software ray tracing",
"dependencies": [
{
"name": "sdl2",
"default-features": false,
"features": [
"vulkan"
]
},
"glm",
"stb",
{
"name": "imgui",
"features": [
"docking-experimental"
],
"default-features": false
},
{
"name": "glslang",
"features": [],
"default-features": false
},
"spirv-reflect",
"assimp",
"vulkan-memory-allocator",
"volk",
"vulkan-headers",
"spirv-tools",
"nlohmann-json",
"gtest",
"joltphysics",
"imguizmo",
"lua",
"sol2"
],
"overrides": [
{
"name": "glm",
"version": "0.9.8.0"
},
{
"name": "assimp",
"version": "5.4.2#0"
},
{
"name": "spirv-tools",
"version": "1.3.280.0"
},
{
"name": "spirv-reflect",
"version": "1.3.280.0#1"
},
{
"name": "glslang",
"version": "13.1.1#1"
},
{
"name": "sdl2",
"version": "2.30.5#1"
},
{
"name": "imgui",
"version": "1.90.7#1"
},
{
"name": "vulkan-memory-allocator",
"version": "3.1.0#0"
},
{
"name": "volk",
"version": "1.3.280.0#0"
},
{
"name": "vulkan-headers",
"version": "1.3.280.0#0"
},
{
"name": "joltphysics",
"version": "5.0.0#1"
},
{
"name": "lua",
"version": "5.4.6"
},
{
"name": "sol2",
"version": "3.3.1#0"
}
]
}