1keeperrl
2========
3
4Source code of KeeperRL.
5
6http://keeperrl.com,
7
8http://store.steampowered.com/app/329970,
9
10https://miki151.itch.io/keeperrl
11
12
13Compiling
14=========
15
16*Prerequisites*
17
18  * make essentials
19  * gcc-4.8.2 OR clang-3.5
20  * git
21  * For compiling on OSX you'll also need libboost-system, libboost-thread and libboost-chrono
22  * libsdl2-dev, libsdl2-image-dev
23  * libopenal-dev
24  * libvorbis-dev
25
26Under Ubuntu 14.4 , you could use these to create development enviroment
27```
28sudo apt-get install libsdl2-dev libsdl2-image-dev libopenal-dev libvorbis-dev llvm-3.4 build-essential
29
30```
31
32
33In terminal:
34  ```
35  git clone https://github.com/miki151/keeperrl.git
36  cd keeperrl
37  make -j 8 OPT=true RELEASE=true # Add DEBUG=true to have debug symbols
38  # add OSX=true to compile on OSX
39  ./keeper
40  ```
41