Skip to content

DrShahinstein/minesweeper-qt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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