From 578a8d3f6dd7829cd0f05f20e724a4515122fcb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Ja=C5=82ocha?= Date: Mon, 9 Dec 2024 16:27:11 +0100 Subject: [PATCH] Add feature to use libmysql instead of libmariadb --- vcpkg.json | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/vcpkg.json b/vcpkg.json index eb7f23d7e2..6d6c89a184 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -12,40 +12,35 @@ "name": "libiconv", "platform": "osx" }, - "libmariadb", "openssl", "pugixml" ], "features": { "http": { "description": "Enable HTTP support", - "dependencies": [ - "boost-beast", - "boost-json" - ] + "dependencies": ["boost-beast", "boost-json"] }, "lua": { "description": "Use Lua instead of LuaJIT", - "dependencies": [ - "lua" - ] + "dependencies": ["lua"] }, "luajit": { "description": "Use LuaJIT instead of Lua", - "dependencies": [ - "luajit" - ] + "dependencies": ["luajit"] + }, + "libmariadb": { + "description": "Use libmariadb instead of libmysql", + "dependencies": ["libmariadb"] + }, + "libmysql": { + "description": "Use libmysql instead of libmariadb", + "dependencies": ["libmysql"] }, "unit-tests": { "description": "Build unit tests", - "dependencies": [ - "boost-test" - ] + "dependencies": ["boost-test"] } }, - "default-features": [ - "lua", - "http" - ], + "default-features": ["lua", "http", "libmariadb"], "builtin-baseline": "215a2535590f1f63788ac9bd2ed58ad15e6afdff" }