Moved changelog and compiling to own files and updated usage info in README.md.

This commit is contained in:
Tiiffi
2016-11-15 20:41:58 +02:00
parent a0e638edc9
commit 46af96a3a4
3 changed files with 92 additions and 93 deletions

11
COMPILING Normal file
View File

@ -0,0 +1,11 @@
####Compiling:
Compile with GCC or CLANG:
```cc -std=gnu11 -Wpedantic -Wall -Wextra -O2 -s -o mcrcon mcrcon.c```
or just run **make**.
On windows, remember to link with winsockets.
Add ```-lws2_32``` to compiler command line on Mingw GCC.
---