Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2019-04-08 11:02:50 +0300
committerVojtech Kral <vojtech@kral.hk>2019-04-08 11:04:40 +0300
commita8a2125069cedf2e5b3121b1d68051c36b09a1d5 (patch)
tree315431872751430c8050a02f2bb31738ce95bd4e /doc
parent09c7eb1d281717f28842b0dcb01e969ed2aeea8f (diff)
Windows deps & build doc: Fix msbuild parallelism, cf. #2078
Diffstat (limited to 'doc')
-rw-r--r--doc/How to build - Windows.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/How to build - Windows.md b/doc/How to build - Windows.md
index 8b750ce0d..e223239ba 100644
--- a/doc/How to build - Windows.md
+++ b/doc/How to build - Windows.md
@@ -66,7 +66,7 @@ There are several options for building from the command line:
To build with msbuild, use the same CMake command as in previous paragraph and then build using
- msbuild /P:Configuration=Release ALL_BUILD.vcxproj
+ msbuild /m /P:Configuration=Release ALL_BUILD.vcxproj
To build with Ninja or nmake, replace the `-G` option in the CMake call with `-G Ninja` or `-G "NMake Makefiles"` , respectively.
Then use either `ninja` or `nmake` to start the build.
@@ -84,7 +84,7 @@ Then `cd` into the `deps` directory and use these commands to build:
mkdir build
cd build
cmake .. -G "Visual Studio 12 Win64" -DDESTDIR="C:\local\destdir-custom"
- msbuild ALL_BUILD.vcxproj
+ msbuild /m ALL_BUILD.vcxproj
You can also use the Visual Studio GUI or other generators as mentioned above.