diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/sese/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/sese/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/sese/vcpkg.json | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/vcpkg/ports/sese/vcpkg.json b/vcpkg/ports/sese/vcpkg.json new file mode 100644 index 0000000..7821b6c --- /dev/null +++ b/vcpkg/ports/sese/vcpkg.json @@ -0,0 +1,72 @@ +{ + "name": "sese", + "version": "2.3.0", + "port-version": 3, + "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" + ] + }, + "replace-execinfo": { + "description": "replace the system execinfo implementation", + "dependencies": [ + "libunwind" + ] + }, + "sqlite3": { + "description": "add sqlite3 support", + "dependencies": [ + "sqlite3" + ] + }, + "tests": { + "description": "build the unit test", + "dependencies": [ + "benchmark", + "gtest" + ] + } + } +} |