forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a44393
commit e9fa419
Showing
1 changed file
with
70 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} | ||
} | ||
} |