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:
parent
9ee6b54a68
commit
61141ebd3a
|
@ -88,10 +88,10 @@ environment variable `VCPKG_ROOT` is set.
|
||||||
To build in the visual studio command prompt, use something like this:
|
To build in the visual studio command prompt, use something like this:
|
||||||
|
|
||||||
```
|
```
|
||||||
mkdir vsbuild
|
mkdir build
|
||||||
cd vsbuild
|
cd build
|
||||||
cmake .. -DVCPKG_TARGET_TRIPLET=x64-windows
|
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
|
This support is new and we are still working out some issues, including support
|
||||||
|
|
Loading…
Reference in New Issue