mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-06-07 12:26:08 +08:00
[sqlpp11] add postgres support (#28989)
This commit is contained in:
parent
f19f5d98b2
commit
c60b65d099
@ -11,9 +11,10 @@ vcpkg_from_github(
|
|||||||
vcpkg_check_features(
|
vcpkg_check_features(
|
||||||
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||||
FEATURES
|
FEATURES
|
||||||
sqlite3 BUILD_SQLITE3_CONNECTOR
|
sqlite3 BUILD_SQLITE3_CONNECTOR
|
||||||
mariadb BUILD_MARIADB_CONNECTOR
|
mariadb BUILD_MARIADB_CONNECTOR
|
||||||
mysql BUILD_MYSQL_CONNECTOR
|
mysql BUILD_MYSQL_CONNECTOR
|
||||||
|
postgresql BUILD_POSTGRESQL_CONNECTOR
|
||||||
)
|
)
|
||||||
|
|
||||||
# Use sqlpp11's own build process
|
# Use sqlpp11's own build process
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "sqlpp11",
|
"name": "sqlpp11",
|
||||||
"version": "0.61",
|
"version": "0.61",
|
||||||
"port-version": 1,
|
"port-version": 2,
|
||||||
"description": "A type safe embedded domain specific language for SQL queries and results in C++.",
|
"description": "A type safe embedded domain specific language for SQL queries and results in C++.",
|
||||||
"homepage": "https://github.com/rbock/sqlpp11",
|
"homepage": "https://github.com/rbock/sqlpp11",
|
||||||
"license": "BSD-2-Clause",
|
"license": "BSD-2-Clause",
|
||||||
@ -29,6 +29,12 @@
|
|||||||
"libmysql"
|
"libmysql"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"postgresql": {
|
||||||
|
"description": "Use PostgreSQL connector",
|
||||||
|
"dependencies": [
|
||||||
|
"libpq"
|
||||||
|
]
|
||||||
|
},
|
||||||
"sqlite3": {
|
"sqlite3": {
|
||||||
"description": "Use SQLite3 connector",
|
"description": "Use SQLite3 connector",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
|
@ -7322,7 +7322,7 @@
|
|||||||
},
|
},
|
||||||
"sqlpp11": {
|
"sqlpp11": {
|
||||||
"baseline": "0.61",
|
"baseline": "0.61",
|
||||||
"port-version": 1
|
"port-version": 2
|
||||||
},
|
},
|
||||||
"sqlpp11-connector-mysql": {
|
"sqlpp11-connector-mysql": {
|
||||||
"baseline": "0.61",
|
"baseline": "0.61",
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "1800c18be7c4fe76b515891d6f7d51525873f264",
|
||||||
|
"version": "0.61",
|
||||||
|
"port-version": 2
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"git-tree": "d7384489fec593161753c46383d26f666a751847",
|
"git-tree": "d7384489fec593161753c46383d26f666a751847",
|
||||||
"version": "0.61",
|
"version": "0.61",
|
||||||
|
Loading…
Reference in New Issue
Block a user