aboutsummaryrefslogtreecommitdiff
path: root/ports/polyhook2/vcpkg.json
blob: 252fb1a87217a2d28e4242ad1976620fa240c936 (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
{
  "name": "polyhook2",
  "version-string": "2021-05-09",
  "port-version": 1,
  "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"
      ]
    }
  }
}