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

14
vcpkg-configuration.json Normal file
View File

@@ -0,0 +1,14 @@
{
"default-registry": {
"kind": "git",
"baseline": "01f602195983451bc83e72f4214af2cbc495aa94",
"repository": "https://github.com/microsoft/vcpkg"
},
"registries": [
{
"kind": "artifact",
"location": "https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip",
"name": "microsoft"
}
]
}