diff options
author | Brad King <brad.king@kitware.com> | 2022-03-16 15:14:50 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-03-16 15:14:58 (GMT) |
commit | b2ba662ca655848455b086017c1699cf11ee5af9 (patch) | |
tree | 94619b385739c4921de4bbcdb717b8ba4fd8ea9e /Modules | |
parent | e6ad4cec73a2b5bc8dc0ac481f18e465f6f418b3 (diff) | |
parent | 8abd714176a8b5fd76f7660a144f4cc88d7746e0 (diff) | |
download | CMake-b2ba662ca655848455b086017c1699cf11ee5af9.zip CMake-b2ba662ca655848455b086017c1699cf11ee5af9.tar.gz CMake-b2ba662ca655848455b086017c1699cf11ee5af9.tar.bz2 |
Merge topic 'doc-list-semicolons' into release-3.23
8abd714176 Help: Clarify that ENVIRONMENT test properties take ;-separated lists
02cf404ace Help: Add advice for dealing with semicolons in lists
c4117d9116 ExternalProject: Document that LIST_SEPARATOR works for CMAKE_ARGS too
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Ben Boeckel <ben.boeckel@kitware.com>
Merge-request: !7066
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/ExternalProject.cmake | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/ExternalProject.cmake b/Modules/ExternalProject.cmake index 14864d5..7f16fdc 100644 --- a/Modules/ExternalProject.cmake +++ b/Modules/ExternalProject.cmake @@ -807,11 +807,11 @@ External Project Definition **Miscellaneous Options:** ``LIST_SEPARATOR <sep>`` - For any of the various ``..._COMMAND`` options, replace ``;`` with - ``<sep>`` in the specified command lines. This can be useful where list - variables may be given in commands where they should end up as - space-separated arguments (``<sep>`` would be a single space character - string in this case). + For any of the various ``..._COMMAND`` options, and ``CMAKE_ARGS``, + replace ``;`` with ``<sep>`` in the specified command lines. + This can be useful where list variables may be given in commands where + they should end up as space-separated arguments (``<sep>`` would be a + single space character string in this case). ``COMMAND <cmd>...`` Any of the other ``..._COMMAND`` options can have additional commands |