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/libmariadb/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/libmariadb/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/libmariadb/vcpkg.json | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/vcpkg/ports/libmariadb/vcpkg.json b/vcpkg/ports/libmariadb/vcpkg.json new file mode 100644 index 0000000..5ffd9a5 --- /dev/null +++ b/vcpkg/ports/libmariadb/vcpkg.json @@ -0,0 +1,56 @@ +{ + "name": "libmariadb", + "version-semver": "3.4.7", + "description": "MariaDB Connector/C is used to connect C/C++ applications to MariaDB and MySQL databases", + "homepage": "https://github.com/mariadb-corporation/mariadb-connector-c", + "license": "LGPL-2.1-or-later", + "supports": "!uwp & !xbox", + "dependencies": [ + { + "name": "libmariadb", + "features": [ + "iconv" + ], + "platform": "windows" + }, + { + "name": "libmariadb", + "features": [ + "openssl" + ], + "platform": "!windows" + }, + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + }, + "zlib" + ], + "features": { + "iconv": { + "description": "Enables character set conversion", + "dependencies": [ + { + "name": "libiconv", + "platform": "!windows" + } + ] + }, + "openssl": { + "description": "Use OpenSSL", + "dependencies": [ + "openssl" + ] + }, + "zstd": { + "description": "Build zstd compression plugin.", + "dependencies": [ + "zstd" + ] + } + } +} |