-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[infoware] fix linking issues with non-release builds (#13822)
- Loading branch information
1 parent
0aae396
commit 221ee43
Showing
3 changed files
with
24 additions
and
19 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"$reason": "Note that independent usage and testing may work, but it seems to fail in CI environments for potential cross-compilation, and is thusly noted here to note break how vcpkg builds things!", | ||
"name": "infoware", | ||
"version-string": "0.5.5", | ||
"port-version": 1, | ||
"description": "C++ Library for pulling system and hardware information, without hitting the command line.", | ||
"homepage": "https://github.com/ThePhD/infoware", | ||
"supports": "!(arm | uwp)", | ||
"features": { | ||
"d3d": { | ||
"description": "Prefer usage of Direct3D to find graphical capabilities (typically only works on Windows systems)." | ||
}, | ||
"opencl": { | ||
"description": "Prefer usage of OpenCL to find graphical capabilities of the system." | ||
}, | ||
"opengl": { | ||
"description": "Prefer usage of OpenGL to find graphical capabilities (may require additional libraries to be available for linking depending on the system)." | ||
}, | ||
"x11": { | ||
"description": "Prefer usage of X11 to find graphical capabilities." | ||
} | ||
} | ||
} |