-
Notifications
You must be signed in to change notification settings - Fork 64
Installing SQLite on Windows using vcpkg
CakeLancelot edited this page Dec 14, 2020
·
2 revisions
To compile OpenFusion on Windows using Visual Studio, you first need to grab SQLite. One of the easier ways to do this is using vcpkg. This guide will detail how to install vcpkg, then use it to install SQLite, and finally integrate everything into VS.
- First, make sure git is installed - you can download it here.
- Now open a command prompt where you want to download vcpkg to.
- Run
git clone https://github.com/microsoft/vcpkg
- this should clone vcpkg to a new folder. - Change directory into the vcpkg folder, then run
bootstrap-vcpkg.bat
to compile vcpkg.
- Now that you have vcpkg installed, run
vcpkg install sqlite3:x64-windows
to download and install SQLite. - Once the above command finishes, run
vcpkg integrate install
to integrate everything into Visual Studio. - You should now be able to compile! Happy coding!