A simple Quake map viewer in OpenGL.
To build opengl-quake, you must first install the following tools:
$ sudo zypper install meson ninja gcc-c++ SDL3-devel glu-devel
$ sudo apt install meson ninja-build g++ libsdl3-dev libglu1-mesa-dev
$ brew install meson ninja pkg-config sdl3
To build the quake demo program, run:
$ meson setup build
$ ninja -C build
The build directory will contain the demo program.
Usage: quake [OPTION]...
Options:
-h, --help Display this text and exit
-w, --window Render in a window
--fullwindow Render in a fullscreen window
-f, --fullscreen Render in fullscreen
-c, --showcursor Show mouse cursor
--nocursor Hide mouse cursor
Licensed under MIT license. See LICENSE for more information.
- Johan Gardhage