summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-11-26 14:52:35 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-11-26 14:52:35 (GMT)
commitb80ef72b4d8e76bf5912d6d59a749a2d94bb49b2 (patch)
treed6bbd427e7381689305401b2c4296a2ed8a0b17d /Source/cmTarget.cxx
parentfd2ffb42aa8f8927f2ca3bf0c183957da88da2c0 (diff)
parent7605e37aabae2678e5696a75e84aced2e84f9037 (diff)
downloadCMake-b80ef72b4d8e76bf5912d6d59a749a2d94bb49b2.zip
CMake-b80ef72b4d8e76bf5912d6d59a749a2d94bb49b2.tar.gz
CMake-b80ef72b4d8e76bf5912d6d59a749a2d94bb49b2.tar.bz2
Merge topic 'ninja-compile-link-pool'
7605e37 Ninja: job pool support for compiling and linking
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index b0a8fd1..2423b27 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -393,6 +393,9 @@ void cmTarget::SetMakefile(cmMakefile* mf)
// so ensure that the conditions don't lead to nonsense.
this->PolicyStatusCMP0022 = cmPolicies::NEW;
}
+
+ this->SetPropertyDefault("JOB_POOL_COMPILE", 0);
+ this->SetPropertyDefault("JOB_POOL_LINK", 0);
}
//----------------------------------------------------------------------------