From 61141ebd3a530b2180ce58da3f37ee92c5805167 Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Thu, 12 Sep 2019 03:12:15 +0000 Subject: [PATCH] add -p:BuildInParallel=true to VS instructions Add `-p:BuildInParallel=true` to the Visual Studio instructions for `msbuild`, to build subprojects in parallel, without which the `-m` option has no effect, both must be used. Signed-off-by: Rafael Kitover --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1cfadd6b..30c79d34 100644 --- a/README.md +++ b/README.md @@ -88,10 +88,10 @@ environment variable `VCPKG_ROOT` is set. To build in the visual studio command prompt, use something like this: ``` -mkdir vsbuild -cd vsbuild +mkdir build +cd build cmake .. -DVCPKG_TARGET_TRIPLET=x64-windows -msbuild /m .\ALL_BUILD.vcxproj -p:Configuration=Release +msbuild -m -p:BuildInParallel=true -p:Configuration=Release .\ALL_BUILD.vcxproj ``` This support is new and we are still working out some issues, including support