From 37b953eb8e69080f5eae76d2af15fc5c357b5079 Mon Sep 17 00:00:00 2001 From: Bernardo Magri Date: Wed, 5 Mar 2025 13:33:56 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b3f572d..aded8ef 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,23 @@ # minesweeper -Minesweeper game in C++ and GTK4 \ No newline at end of file +Minesweeper game in C++ and GTK4 + +## 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 +```