Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 302 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 302 Bytes

simple-3d-raycaster

A simple 3D raycaster test written in C

Building

To build this project from the command line, run the following commands:

mkdir build && cd build
cmake ..
# Default build:
cmake --build .
# Debug build:
cmake --build .  --config Debug