https://github.com/boreec/tetris
Tetris game reproduction written in C++14 and Qt6.
https://github.com/boreec/tetris
cpp cpp14 game game-development gui opengl qt qt6 tetris tetris-game
Last synced: 12 months ago
JSON representation
Tetris game reproduction written in C++14 and Qt6.
- Host: GitHub
- URL: https://github.com/boreec/tetris
- Owner: boreec
- Created: 2022-11-23T05:32:21.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-08T08:47:00.000Z (about 2 years ago)
- Last Synced: 2024-03-08T09:44:39.650Z (about 2 years ago)
- Topics: cpp, cpp14, game, game-development, gui, opengl, qt, qt6, tetris, tetris-game
- Language: C++
- Homepage: https://boreec.github.io
- Size: 97.7 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
This program is an amateur reproduction of the Tetris game made with C++, Qt and OpenGL.
[](https://www.youtube.com/watch?v=kj1cXrnWwcY)
# Requirements
- Qt >= 6.0.0
- OpenGL
- CMake >= 3.5
- C++14
- [Doxygen](https://www.doxygen.nl/index.html) to build documentation (optional).
# Building/Executing
Steps from cloning the repository to running the game:
```bash
$ 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:
```bash
$ cd doc
$ make
$ firefox ../../doc/html/index.html
```