summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2014-02-16 14:38:01 +0100
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2014-02-16 14:38:01 +0100
commit5330a88365d606ddf7c7eb44c4878763b83401bf (patch)
tree3577ae2e573ca0ecf0d5c2fed67ddf6ee8719f31
parentFixed minor formatting issues from #682 (diff)
parentFixed cmake invocation text (diff)
downloadcuberite-5330a88365d606ddf7c7eb44c4878763b83401bf.tar
cuberite-5330a88365d606ddf7c7eb44c4878763b83401bf.tar.gz
cuberite-5330a88365d606ddf7c7eb44c4878763b83401bf.tar.bz2
cuberite-5330a88365d606ddf7c7eb44c4878763b83401bf.tar.lz
cuberite-5330a88365d606ddf7c7eb44c4878763b83401bf.tar.xz
cuberite-5330a88365d606ddf7c7eb44c4878763b83401bf.tar.zst
cuberite-5330a88365d606ddf7c7eb44c4878763b83401bf.zip
-rw-r--r--COMPILING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/COMPILING.md b/COMPILING.md
index 94220f9c6..139f1a0ee 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`.