Skip to content

Commit

Permalink
Release 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rsxrwscjpzdzwpxaujrr committed Jan 30, 2020
1 parent a4b47a6 commit 4a396df
Showing 1 changed file with 37 additions and 7 deletions.
44 changes: 37 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,50 @@
Mazemaze [![Build Status](https://travis-ci.org/mirai65536/mazemaze.svg?branch=master)](https://travis-ci.org/mirai65536/mazemaze)
Mazemaze
========
Simple 3D OpenGL first-person maze game.
[![Build Status](https://travis-ci.org/mirai65536/mazemaze.svg?branch=master)](https://travis-ci.org/mirai65536/mazemaze)

Depends on JsonCpp, SFML and SFGUI packages.
Simple 3D OpenGL first-person maze game.

![](screenshot.png)

### Downloading and Building:
### Install:
You can download precompiled binaries:

##### Windows:
* [Mazemaze_0.2_Windows_64bit.zip](https://github.com/mirai65536/mazemaze/releases/download/v0.2/Mazemaze_0.2_Windows_64bit.zip)
* [Mazemaze_0.2_Windows_32bit.zip](https://github.com/mirai65536/mazemaze/releases/download/v0.2/Mazemaze_0.2_Windows_32bit.zip)

##### Ubuntu, Debian, etc:
* [mazemaze_0.2_amd64.deb](https://github.com/mirai65536/mazemaze/releases/download/v0.2/mazemaze_0.2_amd64.deb)

##### Other GNU/Linux:
* [Mazemaze_0.2_Linux_64bit.tar.gz](https://github.com/mirai65536/mazemaze/releases/download/v0.2/Mazemaze_0.2_Linux_64bit.tar.gz)
* Note that in this case, you need to install the dependencies for distribution by yourself (JsonCpp and SFML 2.5 and later)

You can check checksums of binary packages in [Travis CI logs](https://travis-ci.org/mirai65536/mazemaze/builds/643716280).

### Build:
First you need to install build dependencies
* Ubuntu, Debian, etc:
```
$ sudo apt install libsfml-dev libjsoncpp-dev
```

* Arch Linux:
```
$ sudo pacman -S sfml jsoncpp
```

Then you can proceed with the build:
```
$ git clone https://github.com/mirai65536/mazemaze.git
$ cd mazemaze
$ cmake .
$ mkdir build
$ cd build
$ cmake ..
$ make
```

### Running:
You can also install the game after this:
```
$ ./mazemaze
$ sudo make install
```

0 comments on commit 4a396df

Please sign in to comment.