diff options
author | Alexander Harkness <bearbin@gmail.com> | 2014-02-16 08:08:51 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2014-02-16 08:08:51 +0100 |
commit | 16df93c500b1ada9175d4bc144878e8ec07a14c8 (patch) | |
tree | eb5c8bb9bc02ea145462cbed0d32b04c3e28c5a7 | |
parent | Merge pull request #682 from Howaner/GlobalFixes (diff) | |
parent | Fixed a minor error (diff) | |
download | cuberite-16df93c500b1ada9175d4bc144878e8ec07a14c8.tar cuberite-16df93c500b1ada9175d4bc144878e8ec07a14c8.tar.gz cuberite-16df93c500b1ada9175d4bc144878e8ec07a14c8.tar.bz2 cuberite-16df93c500b1ada9175d4bc144878e8ec07a14c8.tar.lz cuberite-16df93c500b1ada9175d4bc144878e8ec07a14c8.tar.xz cuberite-16df93c500b1ada9175d4bc144878e8ec07a14c8.tar.zst cuberite-16df93c500b1ada9175d4bc144878e8ec07a14c8.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 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`. |