mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 04:49:08 +08:00
c9e786d81a
* Bulk remove vcpkg_fail_port_install calls. Interesting ones have been split out into separate reviews, where "interesting" means "anything more than just deleting the call to vcpkg_fail_port_install", In support of https://github.com/microsoft/vcpkg/pull/21502 * Update version database. * Revert google benchmark changes already submitted as https://github.com/microsoft/vcpkg/pull/22728 * Repair version database.
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "polyhook2",
|
|
"version-date": "2021-05-09",
|
|
"port-version": 2,
|
|
"description": "C++17, x86/x64 Hooking Library v2.0",
|
|
"homepage": "https://github.com/stevemk14ebr/PolyHook_2_0",
|
|
"supports": "!(arm | uwp | linux | osx)",
|
|
"default-features": [
|
|
"capstone",
|
|
"detours",
|
|
"exception",
|
|
"inlinentd",
|
|
"pe",
|
|
"virtuals",
|
|
"zydis"
|
|
],
|
|
"features": {
|
|
"capstone": {
|
|
"description": "Capstone disassembler integration.",
|
|
"dependencies": [
|
|
{
|
|
"name": "capstone",
|
|
"features": [
|
|
"x86"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"detours": {
|
|
"description": "Implement detour functionality"
|
|
},
|
|
"exception": {
|
|
"description": "Implement all exception hooking functionality"
|
|
},
|
|
"inlinentd": {
|
|
"description": "Support inline hooks without specifying typedefs by generating callback stubs at runtime with AsmJit",
|
|
"dependencies": [
|
|
"asmjit"
|
|
]
|
|
},
|
|
"pe": {
|
|
"description": "Implement all win pe hooking functionality"
|
|
},
|
|
"virtuals": {
|
|
"description": "Implement all virtual table hooking functionality"
|
|
},
|
|
"zydis": {
|
|
"description": "Zydis disassembler integration.",
|
|
"dependencies": [
|
|
"zydis"
|
|
]
|
|
}
|
|
}
|
|
}
|