vcpkg/ports/sese/vcpkg.json

73 lines
1.4 KiB
JSON
Raw Normal View History

2024-06-08 12:08:50 +08:00
{
"name": "sese",
2024-07-08 22:22:19 +08:00
"version": "2.2.0",
2024-07-10 22:16:02 +08:00
"port-version": 1,
2024-06-08 12:08:50 +08:00
"description": "A cross-platform framework for basic components.",
"homepage": "https://github.com/libsese/sese",
"license": "Apache-2.0",
"supports": "x64 & (windows | osx | linux) & !uwp",
"dependencies": [
{
"name": "asio",
"features": [
"openssl"
]
},
"openssl",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
"zlib"
],
"default-features": [
"sqlite3"
],
"features": {
"archive": {
"description": "add archive support",
"dependencies": [
"libarchive"
]
},
"async-logger": {
"description": "use the async logger"
},
"mysql": {
"description": "add mysql and mariadb support",
"dependencies": [
"libmariadb"
]
},
"psql": {
"description": "add postgresql support",
"dependencies": [
"libpq"
]
},
2024-07-08 22:22:19 +08:00
"replace-execinfo": {
"description": "replace the system execinfo implementation",
"dependencies": [
"libunwind"
]
},
2024-06-08 12:08:50 +08:00
"sqlite3": {
"description": "add sqlite3 support",
"dependencies": [
"sqlite3"
]
},
"tests": {
"description": "build the unit test",
"dependencies": [
2024-07-08 22:22:19 +08:00
"benchmark",
2024-06-08 12:08:50 +08:00
"gtest"
]
}
}
}