Experimental rendering engine fully based on ray tracing / path tracing.
- CMake 13.2 or later
- Visual Studio 2019 or later
- DirectX 12
- vcpkg
- Not supported yet
- Not supported yet
Build process relies on vcpkg on Windows to fulfill neccessary dependencies.
Clone and install vcpkg:
mkdir vcpkg
git clone --recursive https://github.com/microsoft/vcpkg.git vcpkg
cd vcpkg
.\bootstrap-vcpkg.bat
Install dependencies with vcpkg:
vcpkg install --triplet x64-windows spdlog
cd ..
Clone and build capsaicin:
git clone --recursive https://github.com/yozhijk/capsaicin.git capsaicin
mkdir build
cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=../vcpkg/scripts/buildsystems/vcpkg.cmake
cd build
make -j4