forked from CorsixTH/CorsixTH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcpkg.json
69 lines (69 loc) · 1.19 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
{
"dependencies": [
"freetype",
{
"name": "lua",
"features": [
"tools"
]
},
"luafilesystem",
"lpeg",
"sdl2",
{
"name": "fluidsynth",
"features": [
"sndfile"
]
},
{
"name": "sdl2-mixer",
"features": [
"libmodplug",
"fluidsynth",
"libflac",
"mpg123",
"opusfile"
]
},
"catch2"
],
"features": {
"animview": {
"description": "Support building AnimView",
"dependencies": [
"wxwidgets"
]
},
"updatecheck": {
"description": "Support checking for game updates",
"dependencies": [
{
"name": "curl",
"default-features": false,
"features": [
"ssl"
]
}
]
},
"movies": {
"description": "In game video support",
"dependencies": [
{
"name": "ffmpeg",
"default-features": false,
"features": [
"avcodec",
"avformat",
"swresample",
"swscale"
]
}
]
}
},
"overrides": [
{ "name": "sdl2", "version": "2.28.2" }
]
}