aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/pcre2/vcpkg.json
blob: 55e1d20d428be7709a6572394ba519cf6caae16e (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
{
  "name": "pcre2",
  "version": "10.47",
  "description": "Regular Expression pattern matching using the same syntax and semantics as Perl 5.",
  "homepage": "https://github.com/PCRE2Project/pcre2",
  "license": "BSD-3-Clause",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "platform-default-features"
  ],
  "features": {
    "jit": {
      "description": "Enable support for Just-In-Time compiling regex matchers",
      "supports": "!emscripten & !ios"
    },
    "platform-default-features": {
      "description": "Enable default features",
      "dependencies": [
        {
          "name": "pcre2",
          "features": [
            "jit"
          ],
          "platform": "!emscripten & !ios"
        }
      ]
    }
  }
}