mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-21 04:17:50 +08:00
d765306b07
* fix: patch drogon redis link drogon's source root CMakeLists.txt is now patched to link to hiredis::hiredis provided by vcpkg hiredis port. when using vcpkg manifest mode it used to link drogon.dll target to hiredis.dll while on debug build, hiredisd.dll is only available. this patch resolves this problem.
95 lines
2.0 KiB
JSON
95 lines
2.0 KiB
JSON
{
|
|
"name": "drogon",
|
|
"version": "1.8.4",
|
|
"port-version": 2,
|
|
"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",
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
"brotli",
|
|
"jsoncpp",
|
|
{
|
|
"name": "libuuid",
|
|
"platform": "!windows & !osx"
|
|
},
|
|
"trantor",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
},
|
|
"zlib"
|
|
],
|
|
"features": {
|
|
"ctl": {
|
|
"description": "Build drogon_ctl tool."
|
|
},
|
|
"mysql": {
|
|
"description": "Support reading and writing from/to MySQL databases.",
|
|
"dependencies": [
|
|
{
|
|
"name": "drogon",
|
|
"features": [
|
|
"orm"
|
|
]
|
|
},
|
|
{
|
|
"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": [
|
|
{
|
|
"name": "drogon",
|
|
"features": [
|
|
"orm"
|
|
]
|
|
},
|
|
"libpq"
|
|
]
|
|
},
|
|
"redis": {
|
|
"description": "Support reading and writing from/to Redis databases.",
|
|
"dependencies": [
|
|
{
|
|
"name": "drogon",
|
|
"features": [
|
|
"orm"
|
|
]
|
|
},
|
|
"hiredis"
|
|
]
|
|
},
|
|
"sqlite3": {
|
|
"description": "Support reading and writing from/to SQLite databases.",
|
|
"dependencies": [
|
|
{
|
|
"name": "drogon",
|
|
"features": [
|
|
"orm"
|
|
]
|
|
},
|
|
"sqlite3"
|
|
]
|
|
}
|
|
}
|
|
}
|