forked from EMsoft-org/EMsoft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CTestConfig.cmake
28 lines (23 loc) · 902 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
## 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 "EMsoft")
set(CTEST_NIGHTLY_START_TIME "02:00:00 UTC")
set(CTEST_DROP_METHOD "http")
set(CTEST_DROP_SITE "my.cdash.org")
set(CTEST_DROP_LOCATION "/submit.php?project=EMsoft")
set(CTEST_DROP_SITE_CDASH TRUE)
# Use multiple CPU cores to build
include(ProcessorCount)
ProcessorCount(N)
if(NOT N EQUAL 0)
if(NOT CTEST_CMAKE_GENERATOR STREQUAL "NMake Makefiles")
if(CTEST_CMAKE_GENERATOR MATCHES "Make" OR CTEST_CMAKE_GENERATOR MATCHES "Ninja")
set(CTEST_BUILD_FLAGS "-j${N}")
endif()
endif()
set(ctest_test_args ${ctest_test_args} PARALLEL_LEVEL ${N})
endif()