This is a simple attempt to learn Vulkan based on this website
- Make sure cmake is installed.
- Make sure Vulkan SDK and glfw3 and glm is installed. I used vcpkg to manage the packages. Make sure glslc is present and is in the PATH variable.
- Create a directory call "build".
- Run
cd build && cmake .. <options>
- If using Makefile or NMake, run
make vkTest
ornmake vkTest
. Otherwise, with MSBuild,msbuild <output sln file> -target:vkTest