-
Notifications
You must be signed in to change notification settings - Fork 3
/
CTestConfig.cmake
29 lines (24 loc) · 989 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
#/*================================================================================
#
# NiftyLink: A software library to facilitate communication over OpenIGTLink.
#
# 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 "NiftyLink")
SET(CTEST_NIGHTLY_START_TIME "22: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=NiftyLink")
SET(CTEST_DROP_SITE_CDASH TRUE)
ENDIF(CTEST_DROP_METHOD STREQUAL "http")