Asteroid game made for raylib Slo-Jam 2023-2024
https://github.com/Bigfoot71/Asteroid.git
git clone --recursive https://github.com/Bigfoot71/Asteroid.git
cd Asteroid && mkdir build && cd build
To build for desktop, configure the CMake project as follows:
cmake .. -DSUPPORT_GFX_2D=ON
To build for the web, you will need Emscripten and specify the path to the CMake toolchain module provided with Emscripten:
cmake .. -DSUPPORT_GFX_2D=ON -DPLATFORM=Web -DCMAKE_TOOLCHAIN_FILE=/path/to/your/emscripten/cmake/Modules/Platform/Emscripten.cmake