]> git.lizzy.rs Git - dragonblocks_alpha.git/commitdiff
Fix some mistakes in BUILDING.md
authorElias Fleckenstein <eliasfleckenstein@web.de>
Tue, 22 Jun 2021 16:52:43 +0000 (18:52 +0200)
committerElias Fleckenstein <eliasfleckenstein@web.de>
Tue, 22 Jun 2021 16:52:43 +0000 (18:52 +0200)
Why tf did I write that g++ is required? The project has always been and will always be pure C, and there are no C++ dependencies. xD why am I stupid

BUILDING.md

index c9425308a743209f44bcf8b4372bd8e118eb64f5..cf02dc3bbbcc2961b44d7ed4a642509737660557 100644 (file)
@@ -3,19 +3,19 @@
 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. The ZLib development library is needed as well.
+To build anything you need gcc and GNU make. The ZLib development library is needed as well.
 
 ```bash
 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
 ```
 
-For building the server, the SQLite3 development library is required.
+For building the server the SQLite3 development library is required.
 
 ```bash
 sudo apt install libsqlite3-dev