diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-02-16 14:38:01 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-02-16 14:38:01 +0100 |
commit | 5330a88365d606ddf7c7eb44c4878763b83401bf (patch) | |
tree | 3577ae2e573ca0ecf0d5c2fed67ddf6ee8719f31 /COMPILING.md | |
parent | Fixed minor formatting issues from #682 (diff) | |
parent | Fixed cmake invocation text (diff) | |
download | cuberite-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 |
Diffstat (limited to 'COMPILING.md')
-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`. |