aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/sqlgen/vcpkg.json
blob: 6a4bb05658d2c118ce34ec8563a4a4ab43af4b2e (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
{
  "name": "sqlgen",
  "version": "0.4.0",
  "description": "sqlgen is an ORM and SQL query generator for C++-20, similar to Python's SQLAlchemy/SQLModel or Rust's Diesel.",
  "homepage": "https://github.com/getml/sqlgen/",
  "license": "MIT",
  "dependencies": [
    "reflectcpp",
    {
      "name": "sqlite3",
      "features": [
        "math"
      ]
    },
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "features": {
    "mariadb": {
      "description": "Enable MySQL/MariaDB support",
      "dependencies": [
        "libmariadb"
      ]
    },
    "postgres": {
      "description": "Enable PostgreSQL support",
      "dependencies": [
        "libpq"
      ]
    },
    "tests": {
      "description": "Build the tests",
      "dependencies": [
        "gtest"
      ]
    }
  }
}