diff options
author | stijn <stijn@ignitron.net> | 2016-04-27 16:00:41 +0200 |
---|---|---|
committer | stijn <stinos@zoho.com> | 2016-05-08 12:07:57 +0200 |
commit | 87106d025bcbb7508e9be68efa57e800778365ab (patch) | |
tree | 0c6a48301ce2fa3979a45726667d3f0bb7ab292d | |
parent | c156e89379b8e50f5237f55fec7be1dbad57abc3 (diff) |
windows: Enable multi-processor compilation for msvc
This will launch about as many compiler instances as there are logical
processors on a machine, and as such significantly speeds up compilation.
-rw-r--r-- | windows/msvc/common.props | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/windows/msvc/common.props b/windows/msvc/common.props index cfb6adbc1..26ea78e7e 100644 --- a/windows/msvc/common.props +++ b/windows/msvc/common.props @@ -16,6 +16,8 @@ <SDLCheck>false</SDLCheck> <WarningLevel>Level1</WarningLevel> <ExceptionHandling>false</ExceptionHandling> + <MultiProcessorCompilation>true</MultiProcessorCompilation> + <MinimalRebuild>false</MinimalRebuild> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> |