aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/tinyorm/vcpkg.json
blob: 4c35b4f44a386fe3670fecf616a73f8f929754be (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
  "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
  "name": "tinyorm",
  "version-semver": "0.38.1",
  "maintainers": "Silver Zachara <silver.zachara@gmail.com>",
  "description": "Modern C++ ORM library for Qt framework",
  "homepage": "https://github.com/silverqx/TinyORM",
  "documentation": "https://www.tinyorm.org",
  "license": "MIT",
  "supports": "!(uwp | arm | android | emscripten | osx | ios | xbox | freebsd | openbsd | wasm32)",
  "dependencies": [
    {
      "name": "qtbase",
      "default-features": false
    },
    "range-v3",
    "tabulate",
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "orm",
    "sql-sqlite",
    "tom"
  ],
  "features": {
    "build-mysql-driver": {
      "description": "Build TinyDrivers MySQL database driver (provided by TinyDrivers)",
      "dependencies": [
        "libmysql"
      ]
    },
    "disable-thread-local": {
      "description": "Remove all thread_local storage duration specifiers (disables multi-threading support)"
    },
    "inline-constants": {
      "description": "Use inline constants instead of extern constants in shared builds"
    },
    "mysql-ping": {
      "description": "Install MySQL C client library (libmysql) to support the mysql_ping()",
      "dependencies": [
        "libmysql"
      ]
    },
    "orm": {
      "description": "Enable ORM-related source code (without it only the query builder is compiled)"
    },
    "sql-mysql": {
      "description": "Build Qt SQL MySQL database driver (provided by QtSql)",
      "dependencies": [
        {
          "name": "qtbase",
          "default-features": false,
          "features": [
            "sql-mysql"
          ]
        }
      ]
    },
    "sql-psql": {
      "description": "Build Qt SQL PostgreSQL database driver (provided by QtSql)",
      "dependencies": [
        {
          "name": "qtbase",
          "default-features": false,
          "features": [
            "sql-psql"
          ]
        }
      ]
    },
    "sql-sqlite": {
      "description": "Build Qt SQL SQLite database driver (provided by QtSql)",
      "dependencies": [
        {
          "name": "qtbase",
          "default-features": false,
          "features": [
            "sql-sqlite"
          ]
        }
      ]
    },
    "strict-mode": {
      "description": "Propagate strict compiler/linker options and Qt definitions"
    },
    "tom": {
      "description": "Enable Tom-related source code (command-line interface)"
    },
    "tom-example": {
      "description": "Build Tom command-line application example",
      "dependencies": [
        {
          "name": "tinyorm",
          "default-features": false,
          "features": [
            "tom"
          ]
        }
      ]
    }
  }
}