diff --git a/Modules/FetchContent.cmake b/Modules/FetchContent.cmake index 4532b78421..189cb96612 100644 --- a/Modules/FetchContent.cmake +++ b/Modules/FetchContent.cmake @@ -52,7 +52,7 @@ dependencies and then ensuring they are populated with a separate call: FetchContent_MakeAvailable(googletest myCompanyIcons) The :command:`FetchContent_MakeAvailable` command ensures the named -dependencies have been populated, either by an earlier call or by populating +dependencies have been populated, either by an earlier call, or by populating them itself. When performing the population, it will also add them to the main build, if possible, so that the main build can use the populated projects' targets, etc. See the command's documentation for how these steps @@ -98,7 +98,8 @@ custom steps looks like this: The ``FetchContent`` module also supports defining and populating content in a single call, with no check for whether the content has been populated elsewhere already. This should not be done in projects, but may -be appropriate for populating content in CMake's script mode. +be appropriate for populating content in +:ref:`CMake script mode