summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-04-27 14:34:24 (GMT)
committerBrad King <brad.king@kitware.com>2015-04-28 17:32:23 (GMT)
commit7244e8452fc9e99c613d8fb098903608d96cf73a (patch)
tree549ae8e87d03fc02cc1e6d1421849b154be94959 /Modules
parentf693c136f94c8a21857b8bf4eff944ab57f73765 (diff)
downloadCMake-7244e8452fc9e99c613d8fb098903608d96cf73a.zip
CMake-7244e8452fc9e99c613d8fb098903608d96cf73a.tar.gz
CMake-7244e8452fc9e99c613d8fb098903608d96cf73a.tar.bz2
ctest: Consolidate documentation of CTEST_USE_LAUNCHERS (#15533)
The documentation of this variable in the CTest module is outdated and has been superseded by the ctest(1) manual. In particular, the latter mentions that it works with the Ninja generator as well as makefile generators. Remove the documentation from the CTest module and replace it with a link to the main variable documentation (which already references the ctest(1) manual).
Diffstat (limited to 'Modules')
-rw-r--r--Modules/CTest.cmake15
1 files changed, 3 insertions, 12 deletions
diff --git a/Modules/CTest.cmake b/Modules/CTest.cmake
index fccef4f..8278c5c 100644
--- a/Modules/CTest.cmake
+++ b/Modules/CTest.cmake
@@ -40,21 +40,12 @@ While building a project for submission to CDash, CTest scans the
build output for errors and warnings and reports them with surrounding
context from the build log. This generic approach works for all build
tools, but does not give details about the command invocation that
-produced a given problem. One may get more detailed reports by adding::
+produced a given problem. One may get more detailed reports by setting
+the :variable:`CTEST_USE_LAUNCHERS` variable::
set(CTEST_USE_LAUNCHERS 1)
-to the ``CTestConfig.cmake`` file. When this option is enabled, the CTest
-module tells CMake's Makefile generators to invoke every command in
-the generated build system through a CTest launcher program.
-(Currently the ``CTEST_USE_LAUNCHERS`` option is ignored on non-Makefile
-generators.) During a manual build each launcher transparently runs
-the command it wraps. During a CTest-driven build for submission to
-CDash each launcher reports detailed information when its command
-fails or warns. (Setting ``CTEST_USE_LAUNCHERS`` in ``CTestConfig.cmake`` is
-convenient, but also adds the launcher overhead even for manual
-builds. One may instead set it in a CTest dashboard script and add it
-to the CMake cache for the build tree.)
+in the ``CTestConfig.cmake`` file.
#]=======================================================================]
#=============================================================================