Skip to content

Commit

Permalink
update vcpkg.json format
Browse files Browse the repository at this point in the history
  • Loading branch information
JonLiu1993 committed Jul 8, 2021
1 parent 1a44393 commit e9fa419
Showing 1 changed file with 70 additions and 68 deletions.
138 changes: 70 additions & 68 deletions ports/drogon/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,68 +1,70 @@
{
"name": "drogon",
"version-semver": "1.7.1",
"port-version": 1,
"description": "A C++14/17 based HTTP web application framework running on Linux/macOS/Unix/Windows",
"homepage": "https://github.com/an-tao/drogon",
"documentation": "https://drogon.docsforge.com/master/overview/",
"license": "MIT",
"dependencies": [
"brotli",
"jsoncpp",
"trantor",
"zlib",
{
"name": "libuuid",
"platform": "!windows"
}
],
"features": {
"all": {
"description": "Build with all options",
"dependencies": [
{
"name": "drogon",
"features": [
"ctl",
"mysql",
"orm",
"postgres",
"sqlite3"
]
}
]
},
"ctl": {
"description": "Build drogon_ctl tool."
},
"orm": {
"description": "Build with Object-relational mapping support."
},
"mysql": {
"description": "Support reading and writing from/to MySQL databases.",
"dependencies": [
{
"name": "libmariadb",
"platform": "!osx"
},
{
"name": "libmariadb",
"features": [ "iconv" ],
"platform": "osx"
}
]
},
"postgres": {
"description": "Support reading and writing from/to Postgres databases.",
"dependencies": [
"libpq"
]
},
"sqlite3": {
"description": "Support reading and writing from/to Sqlite databases.",
"dependencies": [
"sqlite3"
]
}
}
}
{
"name": "drogon",
"version-semver": "1.7.1",
"port-version": 1,
"description": "A C++14/17 based HTTP web application framework running on Linux/macOS/Unix/Windows",
"homepage": "https://github.com/an-tao/drogon",
"documentation": "https://drogon.docsforge.com/master/overview/",
"license": "MIT",
"dependencies": [
"brotli",
"jsoncpp",
{
"name": "libuuid",
"platform": "!windows"
},
"trantor",
"zlib"
],
"features": {
"all": {
"description": "Build with all options",
"dependencies": [
{
"name": "drogon",
"features": [
"ctl",
"mysql",
"orm",
"postgres",
"sqlite3"
]
}
]
},
"ctl": {
"description": "Build drogon_ctl tool."
},
"mysql": {
"description": "Support reading and writing from/to MySQL databases.",
"dependencies": [
{
"name": "libmariadb",
"features": [
"iconv"
],
"platform": "osx"
},
{
"name": "libmariadb",
"platform": "!osx"
}
]
},
"orm": {
"description": "Build with Object-relational mapping support."
},
"postgres": {
"description": "Support reading and writing from/to Postgres databases.",
"dependencies": [
"libpq"
]
},
"sqlite3": {
"description": "Support reading and writing from/to Sqlite databases.",
"dependencies": [
"sqlite3"
]
}
}
}

0 comments on commit e9fa419

Please sign in to comment.