projectm/vcpkg.json
Kai Blaschke 1b8004f714
Improve vcpkg manifest, use features for build options.
Now pulling in the required vcpkg dependencies only if a certain build feature is requested.
2024-08-07 18:31:32 +02:00

49 lines
1.2 KiB
JSON

{
"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"
]
}
}
}