diff options
author | Brad King <brad.king@kitware.com> | 2023-03-10 16:47:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-03-12 11:51:58 (GMT) |
commit | d6353e74b4dc53b98943d5d66ab5ffb0bef04d08 (patch) | |
tree | 34aefc9b5c0bc8cba575968d9a245efd93330e5c /Help/manual/cmake-policies.7.rst | |
parent | 9db40bec4e1004baa8b397c8b52c248d8de71f67 (diff) | |
download | CMake-d6353e74b4dc53b98943d5d66ab5ffb0bef04d08.zip CMake-d6353e74b4dc53b98943d5d66ab5ffb0bef04d08.tar.gz CMake-d6353e74b4dc53b98943d5d66ab5ffb0bef04d08.tar.bz2 |
VS: Add policy to build custom commands concurrently
In commit 33c15ae2b9 (VS: Build custom commands concurrently when
possible, 2023-01-19, v3.26.0-rc1~56^2) we added `BuildInParallel` to
custom commands in `.vcxproj` files, but that had to be reverted by
commit abb1c12162 (VS: Revert "Build custom commands concurrently when
possible", 2023-03-07, v3.26.0-rc6~3^2) because some projects may have
custom commands that accidentally rely on serial execution in MSBuild.
Add a policy to use `BuildInParallel` for custom commands in projects
that have been updated to set the policy to `NEW`.
Fixes: #18405
Diffstat (limited to 'Help/manual/cmake-policies.7.rst')
-rw-r--r-- | Help/manual/cmake-policies.7.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Help/manual/cmake-policies.7.rst b/Help/manual/cmake-policies.7.rst index 811547b..a37a45c 100644 --- a/Help/manual/cmake-policies.7.rst +++ b/Help/manual/cmake-policies.7.rst @@ -57,6 +57,7 @@ Policies Introduced by CMake 3.27 .. toctree:: :maxdepth: 1 + CMP0147: Visual Studio generators build custom commands in parallel. </policy/CMP0147> CMP0146: The FindCUDA module is removed. </policy/CMP0146> CMP0145: The Dart and FindDart modules are removed. </policy/CMP0145> CMP0144: find_package uses upper-case PACKAGENAME_ROOT variables. </policy/CMP0144> |