diff options
author | Brad King <brad.king@kitware.com> | 2019-10-10 17:28:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-10-10 17:28:45 (GMT) |
commit | b7509dd674d9e0a1e428c5f4ceff7b78b47ac296 (patch) | |
tree | 15320b95e68d54cdc13a3669e3539069408cb9f4 /Source/QtDialog | |
parent | afdb354ac77818604dfed8ef416031a12ab49a48 (diff) | |
download | CMake-b7509dd674d9e0a1e428c5f4ceff7b78b47ac296.zip CMake-b7509dd674d9e0a1e428c5f4ceff7b78b47ac296.tar.gz CMake-b7509dd674d9e0a1e428c5f4ceff7b78b47ac296.tar.bz2 |
Add option to configure Ninja link job pool for CMake's own binaries
Create an undocumented `CMake_JOB_POOL_LINK_BIN` option that builders
can set to avoid linking too many of our binaries at once.
Diffstat (limited to 'Source/QtDialog')
-rw-r--r-- | Source/QtDialog/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/QtDialog/CMakeLists.txt b/Source/QtDialog/CMakeLists.txt index cb89d19..98dd0e2 100644 --- a/Source/QtDialog/CMakeLists.txt +++ b/Source/QtDialog/CMakeLists.txt @@ -178,6 +178,10 @@ if(WIN32) target_sources(cmake-gui PRIVATE $<TARGET_OBJECTS:CMakeVersion>) endif() +if(CMake_JOB_POOL_LINK_BIN) + set_property(TARGET cmake-gui PROPERTY JOB_POOL_LINK "link-bin") +endif() + # cmake-gui has not been updated for `include-what-you-use`. # Block the tool until this is done. set_target_properties(cmake-gui PROPERTIES |