Skip to content
/ tetris Public

Tetris game reproduction written in C++14 and Qt6.

Notifications You must be signed in to change notification settings

boreec/tetris

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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