1
0
Fork 0

Merge pull request #685 from MuhammadWang/patch-1

Fixed a minor error
This commit is contained in:
Alexander Harkness 2014-02-16 07:08:51 +00:00
commit 16df93c500
1 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ Assuming you are in the MCServer folder created in the initial setup step, you n
```
mkdir Release
cd Release
cmake . -DCMAKE_BUILD_TYPE=RELEASE .. && make
cmake .. -DCMAKE_BUILD_TYPE=RELEASE && make
```
The executable will be built in the `MCServer/MCServer` folder and will be named `MCServer`.
@ -81,7 +81,7 @@ Assuming you are in the MCServer folder created in the Getting the sources step,
```
mkdir Debug
cd Debug
cmake . -DCMAKE_BUILD_TYPE=DEBUG && make`
cmake .. -DCMAKE_BUILD_TYPE=DEBUG && make
```
The executable will be built in the `MCServer/MCServer` folder and will be named `MCServer_debug`.