Title here
Summary here
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.
git clone https://github.com/microsoft/vcpkg
- this should clone vcpkg to a new folder.bootstrap-vcpkg.bat
to compile vcpkg.vcpkg install sqlite3:x64-windows
to download and install SQLite.vcpkg integrate install
to integrate everything into Visual Studio.