https://github.com/Kitware/CMake
Revision 0b82e68f2f52847e4c14f1b22e6ef537b42f415a authored by Brad King on 04 September 2018, 20:09:41 UTC, committed by Brad King on 05 September 2018, 18:32:45 UTC
The custom command de-duplication added by commit v3.12.0-rc1~171^2 (VS:
Generate a custom command only in the least dependent target,
2018-03-23) accidentally also applied to the `CMakeLists.txt` file
reference we put in each target.  This file reference comes with a
custom command that has no dependencies and that is safe to run
repeatedly across multiple targets (via internal stamp checking).
Therefore it should be excluded from the de-duplication so that
`CMakeLists.txt` references appear in all targets for human reference.

Fixes: #18310
1 parent c4ab098
Raw File
Tip revision: 0b82e68f2f52847e4c14f1b22e6ef537b42f415a authored by Brad King on 04 September 2018, 20:09:41 UTC
VS: Restore CMakeLists.txt references in each target
Tip revision: 0b82e68
DartConfig.cmake
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.

set(CTEST_PROJECT_NAME "CMake")
set(CTEST_NIGHTLY_START_TIME "21:00:00 EDT")

set(CTEST_DROP_METHOD "http")
set(CTEST_DROP_SITE "open.cdash.org")
set(CTEST_DROP_LOCATION "/submit.php?project=CMake")
set(CTEST_DROP_SITE_CDASH TRUE)
back to top