How to enable multiprocessor compilation in call to msbuild but not in Visual Studio -
there number of teams in our company use subset of common libraries. projects able use different build scripts, , in 1 project we'd able build msbuild
using /m
option build projects in parallel (some other projects use devenv
build). option can set in build script projects don't need change.
the question how can apply /mp
option cl.exe
allow multiprocessor builds inside each project, without changing common libraries. inside visual studio can apply user property sheet, won't change project files, there way of doing same thing msbuild
providing argument or property sheet can apply custom build settings without changing projects?
edit:
maybe simpler way of summarising question is: can add custom arguments cl.exe
process when calling msbuild
?
have tried set environment variable cl=/mp ?
Comments
Post a Comment