-
-
Notifications
You must be signed in to change notification settings - Fork 376
/
vcpkg.json
49 lines (49 loc) · 1.2 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
{
"name": "projectm",
"version": "4.1.2",
"description": "projectM is an open-source project that reimplements the esteemed Winamp Milkdrop by Geiss in a more modern, cross-platform reusable library.",
"homepage": "https://github.com/projectM-visualizer/projectm",
"license": "LGPL-2.1-only",
"dependencies": [
{
"name": "glew",
"platform": "windows"
}
],
"default-features": [
"external-glm",
"external-evallib"
],
"features": {
"external-glm": {
"description": "Use external GLM headers instead of the built-in ones",
"dependencies": [
"glm"
]
},
"external-evallib": {
"description": "Use external projectm-eval library instead of the Git submodule",
"dependencies": [
"projectm-eval"
]
},
"gui": {
"description": "Build a simple, SDL2-based development test UI",
"dependencies": [
"sdl2"
]
},
"boost-filesystem": {
"description": "Force using boost::filesystem instead of std::filesystem",
"dependencies": [
"boost-filesystem"
]
},
"test": {
"description": "Build unit tests",
"dependencies": [
"gtest"
]
}
}
}