Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 689 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 689 Bytes

Minesweeper

Minesweeper game written in C++ using Qt6.

Preview

preview.mp4

Build

See releases. If you want to build by hand, make sure you have cmake and qt installed on your machine.

Linux

$ mkdir build
$ cd build     
$ cmake ..
$ make
$ ./minesweeper

# or

$ ./run

Windows

Using w64devkit terminal is recommended.

$ mkdir build
$ cd build
$ cmake -G "MinGW Makefiles" ..
$ make
$ ./minesweeper