-
alfrh02 authored
a0.6_0 Added 'wall' tool; renamed run.sh to build.sh which can be ran with to run the subsequent binary file; organised mouse & keyboard inputs and UI rendering into their own functions
9843d558
README.md 1.14 KiB
Radiance Cascades Demo
Lorem ipsum (/ˌlɔː.rəm ˈɪp.səm/ LOR-əm IP-səm) is a dummy or placeholder text commonly used in graphic design, publishing, and web development to fill empty spaces in a layout that do not yet have content.
Requirements
- CMake 3.25
- A C++11 (or higher) compiler
- Raylib 5.5
This currently compiles and runs on macOS and Arch Linux (on X11). No planned support for Wayland :P.
Windows tests planned.
Setup (macOS, Linux)
Install Raylib (Linux, macOS):
macOS:
brew install raylib
Arch Linux:
sudo pacman -S raylib
Compile via CMake:
# either run the convenience build script (with the `-r` flag to run the binary after compilation)
./build.sh -r
# or build it manually
mkdir build
cd build
cmake .. # create makefile via CMake
make # run makefile
./radiance_cascades # run the programme
Setup (Windows)
TBD