Skip to content
Snippets Groups Projects

Radiance Cascades Demo

  1. Requirements
  2. Setup (macOS, Linux)
  3. Setup (Windows)

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