diff options
author | Brad King <brad.king@kitware.com> | 2013-11-26 14:52:35 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-11-26 14:52:35 (GMT) |
commit | b80ef72b4d8e76bf5912d6d59a749a2d94bb49b2 (patch) | |
tree | d6bbd427e7381689305401b2c4296a2ed8a0b17d /Source/cmTarget.cxx | |
parent | fd2ffb42aa8f8927f2ca3bf0c183957da88da2c0 (diff) | |
parent | 7605e37aabae2678e5696a75e84aced2e84f9037 (diff) | |
download | CMake-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.cxx | 3 |
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); } //---------------------------------------------------------------------------- |