summaryrefslogtreecommitdiffstats
path: root/COMPILING.md
diff options
context:
space:
mode:
authorMuhammad Wang <wangyulong@gmail.com>2014-02-16 05:15:24 +0100
committerMuhammad Wang <wangyulong@gmail.com>2014-02-16 05:15:24 +0100
commit0f7d90b7d18a1ccc59b2e47184bf8de1a21ec5a6 (patch)
tree5a09d26f4a8b5d17c9a3c2d7ef978a5b37cafba5 /COMPILING.md
parentRemoved the unnecessary LoopPlayersAndBroadcastChat() functions. (diff)
downloadcuberite-0f7d90b7d18a1ccc59b2e47184bf8de1a21ec5a6.tar
cuberite-0f7d90b7d18a1ccc59b2e47184bf8de1a21ec5a6.tar.gz
cuberite-0f7d90b7d18a1ccc59b2e47184bf8de1a21ec5a6.tar.bz2
cuberite-0f7d90b7d18a1ccc59b2e47184bf8de1a21ec5a6.tar.lz
cuberite-0f7d90b7d18a1ccc59b2e47184bf8de1a21ec5a6.tar.xz
cuberite-0f7d90b7d18a1ccc59b2e47184bf8de1a21ec5a6.tar.zst
cuberite-0f7d90b7d18a1ccc59b2e47184bf8de1a21ec5a6.zip
Diffstat (limited to 'COMPILING.md')
-rw-r--r--COMPILING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/COMPILING.md b/COMPILING.md
index d3c896bdd..94220f9c6 100644
--- a/COMPILING.md
+++ b/COMPILING.md
@@ -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`.