diff options
author | Mattes D <github@xoft.cz> | 2014-02-16 14:34:20 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-02-16 14:34:20 +0100 |
commit | 6b64a722b85d2f1ab6ddba7b874fd2ad43443ef2 (patch) | |
tree | e5ddddede01f686d30012160b55118b1a171400b | |
parent | Merge pull request #685 from MuhammadWang/patch-1 (diff) | |
download | cuberite-6b64a722b85d2f1ab6ddba7b874fd2ad43443ef2.tar cuberite-6b64a722b85d2f1ab6ddba7b874fd2ad43443ef2.tar.gz cuberite-6b64a722b85d2f1ab6ddba7b874fd2ad43443ef2.tar.bz2 cuberite-6b64a722b85d2f1ab6ddba7b874fd2ad43443ef2.tar.lz cuberite-6b64a722b85d2f1ab6ddba7b874fd2ad43443ef2.tar.xz cuberite-6b64a722b85d2f1ab6ddba7b874fd2ad43443ef2.tar.zst cuberite-6b64a722b85d2f1ab6ddba7b874fd2ad43443ef2.zip |
Diffstat (limited to '')
-rw-r--r-- | COMPILING.md | 4 |
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`. |