Skip to content

Commit

Permalink
Add feature to use libmysql instead of libmariadb
Browse files Browse the repository at this point in the history
  • Loading branch information
nekiro committed Dec 9, 2024
1 parent 7573e41 commit 578a8d3
Showing 1 changed file with 13 additions and 18 deletions.
31 changes: 13 additions & 18 deletions vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit 578a8d3

Please sign in to comment.