diff options
author | Craig Scott <craig.scott@crascit.com> | 2024-05-17 04:23:06 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2024-05-17 04:23:39 (GMT) |
commit | b2496bf14c90f6c362d20b84bf406d51c795778b (patch) | |
tree | 5cf5e54a431e94dc61d7ce33e8d5692f56906617 /Help/release | |
parent | 173daad58de172ad5edbbf72117b5597c7339007 (diff) | |
download | CMake-b2496bf14c90f6c362d20b84bf406d51c795778b.zip CMake-b2496bf14c90f6c362d20b84bf406d51c795778b.tar.gz CMake-b2496bf14c90f6c362d20b84bf406d51c795778b.tar.bz2 |
FetchContent: Populate directly without a sub-build
Fixes: #21703
Diffstat (limited to 'Help/release')
-rw-r--r-- | Help/release/dev/fetchcontent-direct.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Help/release/dev/fetchcontent-direct.rst b/Help/release/dev/fetchcontent-direct.rst new file mode 100644 index 0000000..7cb33ab --- /dev/null +++ b/Help/release/dev/fetchcontent-direct.rst @@ -0,0 +1,9 @@ +fetchcontent-direct +------------------- + +* :module:`FetchContent` now prefers to populate content directly rather + than using a separate sub-build. This may significantly improve configure + times on some systems (Windows especially, but also on macOS when using + the Xcode generator). Policy :policy:`CMP0168` provides backward + compatibility for those projects that still rely on using a sub-build for + content population. |