瀏覽代碼

Update 'README.md'

Bernardo Magri 10 月之前
父節點
當前提交
37b953eb8e
共有 1 個文件被更改,包括 21 次插入1 次删除
  1. 21 1
      README.md

+ 21 - 1
README.md

@@ -1,3 +1,23 @@
 # minesweeper
 
-Minesweeper game in C++ and GTK4
+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
+```