A extendable tetris game written in Rust. Extensions are written in Lua.
The prebuilt binaries can be found here.
The build process involves installing the rust toolchain and installing the required SDL2 libraries which the build depends on.
git clone https://github.com/verydedtris/dedtris.git
- Download SDL2 and SDL2_image development libraries.
- Extract all .dll and .lib files usually located under
.\lib\x64\
into the root of the project. cargo run
- Using your package manager install the development libraries for SDL2 and SDL2 image. Example Debian:
sudo apt install libsdl2-dev libsdl2-image-dev
. cargo run
- For building the project it's recommended to have homebrew installed. So then installing the dependancies is simply as follows:
brew install sdl2 sdl2_image
. cargo run