Fixed cmake invocation text
The docs say: cmake <options> <path>
This commit is contained in:
parent
16df93c500
commit
6b64a722b8
@ -69,7 +69,7 @@ Assuming you are in the MCServer folder created in the initial setup step, you n
|
|||||||
```
|
```
|
||||||
mkdir Release
|
mkdir Release
|
||||||
cd 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`.
|
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
|
mkdir Debug
|
||||||
cd 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`.
|
The executable will be built in the `MCServer/MCServer` folder and will be named `MCServer_debug`.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user