https://github.com/Kitware/CMake
Revision a6d3ffcb1fa71395cb0d865b3c79450280554651 authored by Brad King on 03 February 2013, 16:44:05 UTC, committed by Brad King on 04 February 2013, 20:19:56 UTC
Run the test with the ctest --build-noclean option.  The test
CMakeLists.txt file already uses file(REMOVE_RECURSE) to clean out
downloaded data anyway.  Some file removed by "msdev ... /clean" causes
CMake to re-run in the middle of the build step and file(REMOVE_RECURSE)
wipes out already-generated files.
1 parent aed590a
Raw File
Tip revision: a6d3ffcb1fa71395cb0d865b3c79450280554651 authored by Brad King on 03 February 2013, 16:44:05 UTC
Fix Module.ExternalData test on VS 6
Tip revision: a6d3ffc
CTestConfig.cmake
#=============================================================================
# CMake - Cross Platform Makefile Generator
# Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
set(CTEST_PROJECT_NAME "CMake")
set(CTEST_NIGHTLY_START_TIME "1:00:00 UTC")

set(CTEST_DROP_METHOD "http")
set(CTEST_DROP_SITE "www.cdash.org")
set(CTEST_DROP_LOCATION "/CDash/submit.php?project=CMake")
set(CTEST_DROP_SITE_CDASH TRUE)
set(CTEST_CDASH_VERSION "1.6")
set(CTEST_CDASH_QUERY_VERSION TRUE)

# use old trigger stuff so that cmake 2.4 and below will not
# get errors on trigger
set (TRIGGER_SITE
  "http://public.kitware.com/cgi-bin/Submit-CMake-TestingResults.cgi")
back to top