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
2020-02-06 00:23:46 +00:00
snowlib initial commit 2020-02-06 00:23:46 +00:00
snowlib_test initial commit 2020-02-06 00:23:46 +00:00
TestApp initial commit 2020-02-06 00:23:46 +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 initial commit 2020-02-06 00:23:46 +00:00
CMakeSettings.json initial commit 2020-02-06 00:23:46 +00:00
README.md initial commit 2020-02-06 00:23:46 +00:00

Building

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

you will want to install the following packages as follows:

vcpkg install sdl2:x64-windows
vcpkg install glm:x64-windows
vcpkg install glew:x64-windows
vcpkg install 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