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 <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2019-09-12 03:12:15 +00:00
parent 9ee6b54a68
commit 61141ebd3a
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 3 additions and 3 deletions

View File

@ -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