Project:
Skrooge
Code Location:
git://anongit.kde.org/skroogemaster
CTestConfig.cmake
#*************************************************************************** #* Copyright (C) 2008 by S. MANKOWSKI / G. DE BURE support@mankowski.fr * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU General Public License as published by * #* the Free Software Foundation; either version 2 of the License, or * #* (at your option) any later version. * #* * #* This program is distributed in the hope that it will be useful, * #* but WITHOUT ANY WARRANTY; without even the implied warranty of * #* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * #* GNU General Public License for more details. * #* * #* You should have received a copy of the GNU General Public License * #* along with this program. If not, see <http://www.gnu.org/licenses/> * #*************************************************************************** ## This file should be placed in the root directory of your project. ## Then modify the CMakeLists.txt file in the root directory of your ## project to incorporate the testing dashboard. ## # The following are required to uses Dart and the Cdash dashboard ## ENABLE_TESTING() ## INCLUDE(CTest) set(CTEST_PROJECT_NAME "Skrooge") set(CTEST_NIGHTLY_START_TIME "00:00:00 EST") set(CTEST_DROP_METHOD "http") set(CTEST_DROP_SITE "my.cdash.org") set(CTEST_DROP_LOCATION "/submit.php?project=skrooge") set(CTEST_DROP_SITE_CDASH TRUE) set(CTEST_CMAKE_GENERATOR "Unix Makefiles") set(CTEST_BUILD_CONFIGURATION "Profiling") set(CTEST_BUILD_OPTIONS "-DKDE4_BUILD_TESTS=ON") set(WITH_MEMCHECK TRUE) set(WITH_COVERAGE TRUE)
