Skip to content

gittem01/VulkanPlayground

Repository files navigation

Building

Common

mkdir build
cd build

Windows :

cmake ..
  • open created .sln file and build the solution (Release mode recommended)
  • opening the folder from visual studio works best (Does not require common step)

Linux/OSX :

cmake -DCMAKE_BUILD_TYPE=Release ..
make -j 16
  • output file located inside out folder