aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/sqlitecpp/vcpkg.json
blob: 7f3baf69e397e96cedd19f4a53243ea8a4a8d26b (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
{
  "name": "sqlitecpp",
  "version": "3.3.3",
  "description": "SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper.",
  "homepage": "https://github.com/SRombauts/SQLiteCpp",
  "license": "MIT",
  "dependencies": [
    "sqlite3",
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "sqlite"
  ],
  "features": {
    "sqlcipher": {
      "description": "Use the sqlcipher port",
      "dependencies": [
        {
          "name": "sqlcipher",
          "default-features": false
        }
      ]
    },
    "sqlite": {
      "description": "Deprecated; no effects"
    }
  }
}