A 3D renderer based on Vulkan
- CMake version 3.19 or greater
- vcpkg - VCPKG_ROOT must be defined
- Vulkan SDK
Windows: To generate a Visual Studio solution, run the command:
$ cmake --preset msvc2022
(msvc2019 is also supported)
To build, either build the sln file in Visual Studio, or build using CMake like this:
$ cmake --build --preset msvc2022 --config Debug
Linux: To generate makefiles, run the command:
$ cmake --preset make -DCMAKE_BUILD_TYPE=Debug
The selected build type may be Debug or Release
To build with the selected build type, run the command:
$ cmake --build --preset make