mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
18 lines
538 B
CMake
18 lines
538 B
CMake
INCLUDE(${CMAKE_CURRENT_SOURCE_DIR}/CTestConfig.cmake)
|
|
|
|
# Dashboard is opened for submissions for a 24 hour period starting at
|
|
# the specified NIGHLY_START_TIME. Time is specified in 24 hour format.
|
|
SET (NIGHTLY_START_TIME "${CTEST_NIGHTLY_START_TIME}")
|
|
|
|
|
|
# Dart server to submit results (used by client)
|
|
SET(DROP_METHOD http)
|
|
IF(DROP_METHOD MATCHES http)
|
|
IF (NOT DEFINED DROP_SITE)
|
|
SET (DROP_SITE "${CTEST_DROP_SITE}")
|
|
SET (DROP_LOCATION "${CTEST_DROP_LOCATION}")
|
|
ENDIF ()
|
|
ENDIF()
|
|
|
|
SET (TRIGGER_SITE "${CTEST_TRIGGER_SITE}")
|