Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drshahinstein/minesweeper-qt
💣 Minesweeper game written in C++ using Qt
https://github.com/drshahinstein/minesweeper-qt
cmake cpp gui-application minesweeper qt
Last synced: 3 months ago
JSON representation
💣 Minesweeper game written in C++ using Qt
- Host: GitHub
- URL: https://github.com/drshahinstein/minesweeper-qt
- Owner: DrShahinstein
- Created: 2024-07-20T12:41:10.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-30T07:22:42.000Z (4 months ago)
- Last Synced: 2024-09-29T06:05:20.516Z (3 months ago)
- Topics: cmake, cpp, gui-application, minesweeper, qt
- Language: C++
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minesweeper
Minesweeper game written in C++ using Qt6.
## Preview
https://github.com/user-attachments/assets/66a7b4fd-64ed-4994-a101-addfaca5b0e4
## Build
See [releases](https://github.com/DrShahinstein/minesweeper-qt/releases/tag/Stable).
If you want to build by hand, make sure you have [cmake](https://cmake.org/) and [qt](https://www.qt.io/download-open-source) installed on your machine.### Linux
```bash
$ mkdir build
$ cd build
$ cmake ..
$ make
$ ./minesweeper# or
$ ./run
```### Windows
Using [w64devkit](https://github.com/skeeto/w64devkit) terminal is recommended.
```bash
$ mkdir build
$ cd build
$ cmake -G "MinGW Makefiles" ..
$ make
$ ./minesweeper
```