]> git.lizzy.rs Git - dragonblocks_alpha.git/blobdiff - BUILDING.md
Correct acceleration calculation
[dragonblocks_alpha.git] / BUILDING.md
index 10539b7b9b6d9bcc735999e7d7c5ebff467cc00b..cf02dc3bbbcc2961b44d7ed4a642509737660557 100644 (file)
@@ -3,17 +3,26 @@
 GNU make is used for compiling. The code and the Makefile are located in the src/ directory.
 
 ## Dependencies
-To build anything you need g++ and GNU make.
+To build anything you need gcc and GNU make. The ZLib development library is needed as well.
+
 ```bash
-sudo apt install build-essential make
+sudo apt install build-essential make zlib1g-dev
 ```
 
-The development versions OpenGL, GLFW3, GLEW are required to build the client.
+The development versions of OpenGL, GLFW3, GLEW are required to build the client.
+
 ```bash
 sudo apt install libgl1-mesa-dev libglfw3-dev libglew-dev
 ```
 
-When building the client, don't forget to pull the submodules before building.
+For building the server the SQLite3 development library is required.
+
+```bash
+sudo apt install libsqlite3-dev
+```
+
+Don't forget to pull the submodules before building.
+
 ``bash
 git submodule update --init
 ```
@@ -28,7 +37,8 @@ git submodule update --init
 The debug flag (`-g`) is set by default (RELEASE=TRUE will disable it).
 
 ## Release
+
 ```bash
-./release.sh
+./snapshot.sh
 ```
-This script will create a release zipfile.
+This script will create a snapshot zipfile.