configurable tetris build with raylib in C++ for desktop & web
make sure you have git, cmake, a c++ compiler and raylib#build-and-installation
git clone https://github.com/StillGreen-san/raymino
cd rayminomkdir build-exe
cmake -S . -B build-exe
cmake --build build-exe --config release --target raymino
for emscripten see here, on windows you also need ninja
mkdir build-web
emcmake cmake -S . -B build-web
cmake --build build-web --config release --target raymino
to properly load wasm the site needs to be hosted by a webserver
eg python -m http.server
(pulled in via CPM [MIT])
- raylib [Zlib]
- raylib-cpp [Zlib]
- raygui [Zlib]
- rres [MIT] (currently unused)
- magic_enum [MIT]
- Catch2 [BSL]
