aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/soci/vcpkg.json
blob: 004473ef31d261ff582f64b4b4401e88a219426b (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
{
  "name": "soci",
  "version": "4.0.3",
  "port-version": 3,
  "description": "SOCI - The C++ Database Access Library",
  "homepage": "https://soci.sourceforge.net/",
  "license": "BSL-1.0",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "features": {
    "boost": {
      "description": "Integration with Boost",
      "dependencies": [
        "boost-date-time",
        "boost-fusion",
        "boost-optional",
        "boost-preprocessor",
        "boost-tuple"
      ]
    },
    "empty": {
      "description": "Build the backend skeleton for new backends development"
    },
    "mysql": {
      "description": "Build mysql backend",
      "dependencies": [
        "libmysql"
      ]
    },
    "odbc": {
      "description": "Build odbc backend",
      "supports": "!uwp",
      "dependencies": [
        {
          "name": "unixodbc",
          "platform": "!windows"
        }
      ]
    },
    "postgresql": {
      "description": "Build postgresql backend",
      "dependencies": [
        {
          "name": "libpq",
          "default-features": false
        }
      ]
    },
    "sqlite3": {
      "description": "Build sqlite3 backend",
      "dependencies": [
        {
          "name": "sqlite3",
          "default-features": false
        }
      ]
    }
  }
}