Improved build instruction structure
This commit is contained in:
parent
b0753901ec
commit
b409b76eca
|
@ -0,0 +1,10 @@
|
||||||
|
Apart from basic compile tools (*GCC/Clang, Make*) you'll also need to install **sdl2, sdl2-image, sdl2-ttf, sdl2-mixer** (If on a debian based dist you need to install the *dev* packages).
|
||||||
|
Optionally you can also install **cppcheck** and **physfs**
|
||||||
|
|
||||||
|
Once that is done run the following:
|
||||||
|
```bash
|
||||||
|
mkdir _build
|
||||||
|
cd _build
|
||||||
|
cmake -DCMAKE_BUILD_TYPE=Debug .. # Build type flag is optional
|
||||||
|
make
|
||||||
|
```
|
14
README.md
14
README.md
|
@ -46,18 +46,8 @@ BreakHack is released under two different licenses.
|
||||||
|
|
||||||
Compile
|
Compile
|
||||||
-------
|
-------
|
||||||
Apart from basic compile tools (*GCC/Clang, Make*) you'll also need to install **sdl2, sdl2-image, sdl2-ttf, sdl2-mixer** (If on a debian based dist you need to install the *dev* packages).
|
[Linux](LINUX_BUILD_INSTRUCTIONS.md)
|
||||||
Optionally you can also install **cppcheck** and **physfs**
|
[Windows (Visual Studio)](MSVC_BUILD_INSTRUCTIONS.md)
|
||||||
|
|
||||||
Once that is done run the following:
|
|
||||||
```bash
|
|
||||||
mkdir _build
|
|
||||||
cd _build
|
|
||||||
cmake -DCMAKE_BUILD_TYPE=Debug .. # Build type flag is optional
|
|
||||||
make
|
|
||||||
```
|
|
||||||
|
|
||||||
Also see [compilation instructions for Windows](MSVC_BUILD_INSTRUCTIONS.md).
|
|
||||||
|
|
||||||
Contribute
|
Contribute
|
||||||
----------
|
----------
|
||||||
|
|
Loading…
Reference in New Issue