Experimental implementation of the Snowblind engine
This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2021-03-15 22:03:37 +00:00
CuttownTest qt skeleton 2021-03-15 22:03:37 +00:00
snowlib cuttown 2020-09-15 22:58:56 +01:00
snowlib_test initial commit 2020-02-06 00:23:46 +00:00
TestApp fix tex decod 2020-02-07 00:23:42 +00:00
.gitignore initial commit 2020-02-06 00:23:46 +00:00
BoostTestHelpers.cmake initial commit 2020-02-06 00:23:46 +00:00
CMakeLists.txt qt skeleton 2021-03-15 22:03:37 +00:00
CMakeSettings.json qt skeleton 2021-03-15 22:03:37 +00:00
README.md fixes 2020-02-06 16:26:36 +00:00

Building

For windows, I use vcpkg to install packages. See https://github.com/Microsoft/vcpkg

> git clone https://github.com/Microsoft/vcpkg.git
> cd vcpkg

PS> .\bootstrap-vcpkg.bat
Linux:~/$ ./bootstrap-vcpkg.sh

.\vcpkg integrate install

you will want to install the following packages as follows:

vcpkg install sdl2:x64-windows glm:x64-windows glew:x64-windows boost:x64-windows

Then you can open the directory in visual studio and it will be recognised as a cmake project. Whether you use the open folder functionality or call cmake on the command line you will need to set the toolchain file to the vcpkg one. This lives in the vcpkg directory under scripts\buildsystems\vcpkg.cmake

https://github.com/microsoft/vcpkg/blob/master/docs/examples/installing-and-using-packages.md#cmake-toolchain-file

note that if you do vcpkg integrate install then you don't need to set the toolchain when using visual studio 2019