diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..53d60fe --- /dev/null +++ b/README.md | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | # A minesweeper implementation to play around with Hare and Raylib | ||
| 2 | |||
| 3 | Just for fun | ||
| 4 | |||
| 5 | ## Requirements | ||
| 6 | |||
| 7 | * [Hare](https://harelang.org) | ||
| 8 | * All that is required to build [raylib](https://www.raylib.com) from source | ||
| 9 | (see the | ||
| 10 | [raylib wiki](https://github.com/raysan5/raylib/wiki/Working-on-GNU-Linux)) | ||
| 11 | * GNU make | ||
| 12 | |||
| 13 | ## Build and run | ||
| 14 | |||
| 15 | Just type: | ||
| 16 | |||
| 17 | ``` | ||
| 18 | make | ||
| 19 | ./minesweeper | ||
| 20 | ``` | ||
| 21 | |||
| 22 | Alternatively, you can build and run directly with: | ||
| 23 | |||
| 24 | ``` | ||
| 25 | make run | ||
| 26 | ``` | ||
| 27 | |||
| 28 | Tested on Fedora Linux (x86-64) and OpenBSD (x86-64). May work on other systems too. | ||
