From 75c89ed08eb60443171d65d26b9144f293a80a44 Mon Sep 17 00:00:00 2001 From: Daniel Kaluza Date: Sat, 4 Jan 2025 19:10:41 +0100 Subject: [PATCH] Add SQLite installation instructions for Windows to contrib --- CONTRIBUTING.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 55dc55ba3..c5dd51742 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -75,10 +75,14 @@ The purpose of these tests is to verify behavior matches with SQLite and Limbo. ```console cargo install cargo-c ``` -2. [SQLite](https://www.sqlite.org/index.html) is needed for compatibility checking. You can install it using `brew`: +2. [SQLite](https://www.sqlite.org/index.html) is needed for compatibility checking. You can install it using `brew` on macOS/Linux: ```console brew install sqlite ``` +Or using `choco` on Windows: +```console +choco install sqlite +``` ### Running the tests To run the test suite with Limbo, simply run: