https://github.com/Kitware/CMake
Revision 81c88bb26190da0d9f5a2ceda8239387c2fdcd73 authored by Kyle Edwards on 20 October 2020, 15:59:42 UTC, committed by Kitware Robot on 20 October 2020, 15:59:54 UTC
4a123fc28c Help: Clarify purpose of warnings and errors
6c74bcfc20 Help: Make architecture and toolset descriptions generic
45766789a0 Help: Add inheritance to CMakePresets.json example
88c9d6f6eb Help: Add documentation for debug field
efab856008 Help: Show environment field
2208db114c Help: Show multiple ways of doing cacheVariables
d30f85193f Help: Move vendor field into example
b9c8c57860 Help: s/unusedVars/unusedCli/
...

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5373
2 parent s bb4e2f3 + 4a123fc
Raw File
Tip revision: 81c88bb26190da0d9f5a2ceda8239387c2fdcd73 authored by Kyle Edwards on 20 October 2020, 15:59:42 UTC
Merge topic 'cmake-presets-doc-move' into release-3.19
Tip revision: 81c88bb
CTestConfig.cmake
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.

# If changing this file, also update Utilities/Sphinx/CTestConfig.cmake

set(CTEST_PROJECT_NAME "CMake")
set(CTEST_NIGHTLY_START_TIME "1:00:00 UTC")

if(NOT CTEST_DROP_METHOD STREQUAL "https")
  set(CTEST_DROP_METHOD "http")
endif()
set(CTEST_DROP_SITE "open.cdash.org")
set(CTEST_DROP_LOCATION "/submit.php?project=CMake")
set(CTEST_DROP_SITE_CDASH TRUE)
set(CTEST_CDASH_VERSION "1.6")
set(CTEST_CDASH_QUERY_VERSION TRUE)
back to top