1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

sqlite: add Windows instructions to readme (#7041)

This commit is contained in:
Lukas Neubert
2020-12-01 04:00:41 +01:00
committed by GitHub
parent 879d238887
commit 552de94da6
2 changed files with 22 additions and 13 deletions

View File

@ -1,13 +1,16 @@
# Install SQLite Dependency
# to use module `sqlite`, install `sqlite-devel` first.
**Fedora 31**:
for **Fedora 31**:
sudo dnf -y install sqlite-devel
`sudo dnf -y install sqlite-devel`
for **Ubuntu 20.04**:
sudo apt install -y libsqlite3-dev
**Ubuntu 20.04**:
`sudo apt install -y libsqlite3-dev`
**Windows**:
- Download the source zip from [SQLite Downloads](https://sqlite.org/download.html)
- Create a new `sqlite` subfolder inside `v/thirdparty`
- Extract the zip into that folder