Files
minesweeper/README.md
2025-04-10 17:19:02 +01:00

26 lines
338 B
Markdown

# minesweeper
Minesweeper game in C++ and GTK4
![Game Screenshot](screenshots/screen1.png)
## Instructions to build
Install dependencies
```
sudo apt install libgtkmm-4.0-dev libsigc++-3.0-dev
```
Go to the project folder
```
cd minesweeper
```
Setup meson and compile the project
```
meson setup build
meson compile -C build
```