Meta+LibWebView: Install and link sqlite3 with vcpkg

We will use sqlite3 as a replacement for LibSQL. Using a tried-and-true
database will allow us to avoid maintaining our an incomplete, non-ACID,
and less performant implementation. It also means we do not have to
launch and manage the singleton SQLServer process.
This commit is contained in:
Timothy Flynn
2024-06-04 16:28:35 -04:00
committed by Tim Flynn
parent b36ab480bf
commit 65ddd0553b
4 changed files with 32 additions and 0 deletions

11
vcpkg.json Normal file
View File

@@ -0,0 +1,11 @@
{
"dependencies": [
"sqlite3"
],
"overrides": [
{
"name": "sqlite3",
"version": "3.45.3"
}
]
}