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
|
{
"name": "sfml",
"version": "3.0.2",
"description": "Simple and fast multimedia library",
"homepage": "https://github.com/SFML/SFML",
"license": "Zlib",
"supports": "!uwp",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"audio",
"graphics",
"network",
"window"
],
"features": {
"audio": {
"description": "Use sfml-audio library",
"dependencies": [
"libflac",
"libogg",
"libvorbis",
"miniaudio"
]
},
"graphics": {
"description": "Use sfml-graphics library",
"dependencies": [
{
"name": "freetype",
"default-features": false
},
{
"name": "sfml",
"default-features": false,
"features": [
"window"
]
},
"stb"
]
},
"network": {
"description": "Use sfml-network library"
},
"window": {
"description": "Use sfml-window library",
"dependencies": [
"opengl"
]
}
}
}
|