]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - README.md
Callback: work at any arity
[xonotic/netradiant.git] / README.md
index 44436fd6ae95f694940e761222c6366b31188a9e..59e356fa8f13a94bc1f435ed2353e2b76376a3fe 100644 (file)
--- a/README.md
+++ b/README.md
@@ -32,6 +32,8 @@ See also https://gitlab.com/xonotic/netradiant/ for a source browser, issues and
 
 ## msys2
 
 
 ## msys2
 
+Under MSYS2, the mingw shell must be used
+
 ### 32 bit:
 
 ```
 ### 32 bit:
 
 ```
@@ -58,11 +60,15 @@ This project uses the usual CMake workflow:
 
 ## Debug
 
 
 ## Debug
 
-`cmake -G "Unix Makefiles" -H . -B build && cmake --build build -- -j$(nproc)`
+```
+cmake -G "Unix Makefiles" -H. -Bbuild && cmake --build build -- -j$(nproc)
+```
 
 ## Release
 
 
 ## Release
 
-`cmake -G "Unix Makefiles" -H . -B build -DCMAKE_BUILD_TYPE=Release && cmake --build build -- -j$(nproc)`
+```
+cmake -G "Unix Makefiles" -H. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build -- -j$(nproc)
+```
 
 ## More Compilation Details
 
 
 ## More Compilation Details