File: CTestConfig.cmake

package info (click to toggle)
openstructure 2.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 206,240 kB
  • sloc: cpp: 188,571; python: 36,686; ansic: 34,298; fortran: 3,275; sh: 312; xml: 146; makefile: 29
file content (28 lines) | stat: -rw-r--r-- 959 bytes parent folder | download | duplicates (3)
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
28
## 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 "OpenStructure")
set(CTEST_NIGHTLY_START_TIME "00:00:00 MEZ")

set(CTEST_DROP_METHOD "http")
set(CTEST_DROP_SITE "kb-pdwg1059-06.pz.unibas.ch")
set(CTEST_DROP_LOCATION "/cdash/submit.php?project=OpenStructure")
set(CTEST_DROP_SITE_CDASH TRUE)

if ("${CMAKE_NATIVE_ARCH}" MATCHES "64")
  set(CMAKE_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}64bit")
endif()
if (USE_DOUBLE_PRECISION)
  set(CMAKE_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-double")
endif()
if (NOT ENABLE_GFX)
  set(CMAKE_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-no_gfx")
endif()
if (NOT ENABLE_UI)
  set(CMAKE_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-no_ui")
endif()

set(BUILDNAME "${CMAKE_SYSTEM_NAME}")