-
-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve vcpkg manifest, use features for build options.
Now pulling in the required vcpkg dependencies only if a certain build feature is requested.
- Loading branch information
Showing
5 changed files
with
78 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg-configuration.schema.json", | ||
"default-registry": { | ||
"kind": "git", | ||
"baseline": "815d93b520779e4354bb4b954fc2179b3e520c26", | ||
"baseline": "a0f7f5379aa39d638efb1b89ac88a39c1011e4aa", | ||
"repository": "https://github.com/microsoft/vcpkg" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,49 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.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": [ | ||
"glew", | ||
"gtest", | ||
"sdl2" | ||
] | ||
} | ||
{ | ||
"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" | ||
] | ||
} | ||
} | ||
} |
Submodule projectm-eval
updated
6 files