Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 676 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 676 Bytes

Description

This program is an amateur reproduction of the Tetris game made with C++, Qt and OpenGL.

video

Requirements

  • Qt >= 6.0.0
  • OpenGL
  • CMake >= 3.5
  • C++14
  • Doxygen to build documentation (optional).

Building/Executing

Steps from cloning the repository to running the game:

$ git clone https://gitlab.com/boreec/tetris.git
$ cd tetris
$ mkdir build
$ cd build
$ cmake ..
$ make
$ ./Tetris

From this step, you can generate the documentation:

$ cd doc
$ make
$ firefox ../../doc/html/index.html