aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/polyhook2/vcpkg.json
blob: 012d80e51385e8a8d30ec989af1e9754af250932 (plain)
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
50
51
52
53
54
55
{
  "name": "polyhook2",
  "version-date": "2025-06-21",
  "description": "C++17, x86/x64 Hooking Library v2.0",
  "homepage": "https://github.com/stevemk14ebr/PolyHook_2_0",
  "license": "MIT",
  "supports": "(x86 | x64) & !(uwp | osx)",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    },
    "zydis"
  ],
  "default-features": [
    "detours",
    {
      "name": "exception",
      "platform": "windows"
    },
    "inlinentd",
    {
      "name": "pe",
      "platform": "windows"
    },
    "virtuals"
  ],
  "features": {
    "detours": {
      "description": "Implement detour functionality",
      "dependencies": [
        "asmtk"
      ]
    },
    "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"
    }
  }
}