aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/sqlite3/vcpkg.json
blob: 7b0982e47a62066635b364fece6ee82d0e3f15f3 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
  "name": "sqlite3",
  "version": "3.51.0",
  "description": "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.",
  "homepage": "https://sqlite.org/",
  "license": "blessing",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "json1"
  ],
  "features": {
    "dbpage-vtab": {
      "description": "Enable the recovery extension"
    },
    "dbstat": {
      "description": "Enable the DBSTAT virtual table"
    },
    "fts3": {
      "description": "Enable the FTS3 extension"
    },
    "fts4": {
      "description": "Enable the FTS4 extension"
    },
    "fts5": {
      "description": "Enable the FTS5 extension"
    },
    "geopoly": {
      "description": "Enable geopoly functionality for sqlite3"
    },
    "json1": {
      "description": "Enable JSON functionality for sqlite3"
    },
    "limit": {
      "description": "Enable the UPDATE/DELETE LIMIT clause"
    },
    "math": {
      "description": "Enable math functions"
    },
    "memsys3": {
      "description": "Enable MEMSYS3"
    },
    "memsys5": {
      "description": "Enable MEMSYS5"
    },
    "omit-load-extension": {
      "description": "Enable loading of external extensions"
    },
    "rtree": {
      "description": "Enable the RTREE extension"
    },
    "session": {
      "description": "Enable the SESSION extension"
    },
    "snapshot": {
      "description": "Enable the snapshot function"
    },
    "soundex": {
      "description": "Enable the SOUNDEX scalar function"
    },
    "tool": {
      "description": "Build sqlite3 executable",
      "supports": "!uwp"
    },
    "unicode": {
      "description": "Enable unicode support",
      "dependencies": [
        "icu"
      ]
    },
    "zlib": {
      "description": "Build sqlite3 command line tool with zlib support; has no effect on the library itself",
      "dependencies": [
        "zlib"
      ]
    }
  }
}