Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 530 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 530 Bytes

kronic

WIP Vulkan based FPS engine

Setup

Ubuntu Linux

  1. Install dependencies
sudo apt-get update && sudo apt install -y vulkan-tools libvulkan-dev xorg-dev cmake build-essential
  1. Configure CMake cache
mkdir build && cd build && cmake .. -DBUILD_TESTS=ON
  1. Build kronic
cd build && cmake --build . --config Debug -j`grep -c '^processor' /proc/cpuinfo`
  1. Run!
./build/kronic/kronic

You may use the pre-defined tasks in the .vscode/ folder to build, run, and debug easily.