summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2022-12-26 16:54:25 +0100
committerGitHub <noreply@github.com>2022-12-26 16:54:25 +0100
commitb0376367562d6c2c9f69d3b16b3c62bf7c353c78 (patch)
tree2967a94e44ef55841e6fcf87c6eb72c7697e2947
parentMojangAPI: Update certificates (#5456) (diff)
downloadcuberite-b0376367562d6c2c9f69d3b16b3c62bf7c353c78.tar
cuberite-b0376367562d6c2c9f69d3b16b3c62bf7c353c78.tar.gz
cuberite-b0376367562d6c2c9f69d3b16b3c62bf7c353c78.tar.bz2
cuberite-b0376367562d6c2c9f69d3b16b3c62bf7c353c78.tar.lz
cuberite-b0376367562d6c2c9f69d3b16b3c62bf7c353c78.tar.xz
cuberite-b0376367562d6c2c9f69d3b16b3c62bf7c353c78.tar.zst
cuberite-b0376367562d6c2c9f69d3b16b3c62bf7c353c78.zip
-rw-r--r--COMPILING.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/COMPILING.md b/COMPILING.md
index 030121ad4..a83257627 100644
--- a/COMPILING.md
+++ b/COMPILING.md
@@ -33,7 +33,13 @@ If you're using Git to get the source, use the following command to set up the l
git clone --recursive https://github.com/cuberite/cuberite.git
```
-Now that you have the source, it's time to prepare the project files for your favorite compiler. Open a command window in the folder with the source and type in `cmake .` . This will run CMake, it will auto-detect your Visual Studio version and produce the appropriate project and solution files.
+Now that you have the source, it's time to prepare the project files for your favorite compiler. Open a command window in the folder with the source and type in:
+```
+mkdir build
+cd build
+cmake ..
+```
+This creates a `build` folder where the build will take place, then runs CMake, which will auto-detect your Visual Studio version and produce the appropriate project and solution files.
Finally, open the newly created file, `Cuberite.sln`, in your Visual Studio.