-
Notifications
You must be signed in to change notification settings - Fork 13
/
CTestConfig.cmake
29 lines (24 loc) · 950 Bytes
/
CTestConfig.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#/*============================================================================
#
# MYPROJECT: A software package for whatever.
#
# Copyright (c) University College London (UCL). All rights reserved.
#
# This software is distributed WITHOUT ANY WARRANTY; without even
# the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE.
#
# See LICENSE.txt in the top level directory for details.
#
#============================================================================*/
set(CTEST_PROJECT_NAME "MYPROJECT")
set(CTEST_NIGHTLY_START_TIME "20:00:00 GMT")
set(CTEST_TEST_TIMEOUT "3600")
if(NOT DEFINED CTEST_DROP_METHOD)
set(CTEST_DROP_METHOD "http")
endif(NOT DEFINED CTEST_DROP_METHOD)
if(CTEST_DROP_METHOD STREQUAL "http")
set(CTEST_DROP_SITE "cdash.cmiclab.cs.ucl.ac.uk")
set(CTEST_DROP_LOCATION "/submit.php?project=CMakeCatchTemplate")
set(CTEST_DROP_SITE_CDASH TRUE)
endif(CTEST_DROP_METHOD STREQUAL "http")