123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- ####################################################################################
- # OS :
- # Hardware:
- # GPU :
- ####################################################################################
- # WARNING - The specific version and processor type of this machine should be reported
- # in the header above. Indeed, this file will be send to the dashboard as a NOTE file.
- #
- # On linux, you could run:
- # 'uname -o' and 'cat /etc/*-release' to obtain the OS name.
- # 'uname -mpi' to obtain hardware details.
- # 'glxinfo | grep OpenGL' to obtain GPU details.
- ####################################################################################
- cmake_minimum_required(VERSION 2.8.9)
- #
- # For additional information, see http://www.commontk.org/index.php/Dashboard_setup
- #
- #-----------------------------------------------------------------------------
- # Experimental:
- # - run_ctest() macro will be called *ONE* time
- # - binary directory will *NOT* be cleaned
- # Continuous:
- # - run_ctest() macro will be called EVERY 5 minutes ...
- # - binary directory will *NOT* be cleaned
- # - configure/build will be executed *ONLY* if the repository has been updated
- # Nightly:
- # - run_ctest() macro will be called *ONE* time
- # - binary directory *WILL BE* cleaned
- set(SCRIPT_MODE "Experimental") # "Experimental", "Continuous", "Nightly"
- # You could invoke the script with the following syntax:
- # ctest -S karakoram_Slicer4_nightly.cmake -C <CTEST_BUILD_CONFIGURATION> -V
- #
- # Note that '-C <CTEST_BUILD_CONFIGURATION>' is mandatory on windows
- #-----------------------------------------------------------------------------
- # Dashboard properties
- #-----------------------------------------------------------------------------
- set(MY_OPERATING_SYSTEM "Ubuntu-13.10") # Windows, Linux, Darwin...
- set(MY_COMPILER "g++4.8.1")
- set(MY_QT_VERSION "4.8.5")
- set(QT_QMAKE_EXECUTABLE "$ENV{HOME}/Support/qt-everywhere-opensource-release-build-4.8.5/bin/qmake")
- set(CTEST_SITE "karakoram.kitware") # for example: mymachine.kitware, mymachine.dkfz, ...
- set(CTEST_DASHBOARD_ROOT "$ENV{HOME}/Dashboards/${SCRIPT_MODE}")
- # set(GIT_REPOSITORY http://github.com/YOURUSERNAME/CTK.git)
- set(GIT_TAG "") # origin/next
- # Each dashboard script should specify a unique ID per CTEST_DASHBOARD_ROOT.
- # It means the following directories will be created:
- # <CTEST_DASHBOARD_ROOT>/<DIRECTORY_NAME>-<DIRECTORY_IDENTIFIER> # Source directory
- # <CTEST_DASHBOARD_ROOT>/<DIRECTORY_NAME>-<DIRECTORY_IDENTIFIER>-build # Build directory
- set(DIRECTORY_IDENTIFIER "0")
- # Open a shell and type in "cmake --help" to obtain the proper spelling of the generator
- set(CTEST_CMAKE_GENERATOR "Unix Makefiles")
- set(MY_BITNESS "64")
- #-----------------------------------------------------------------------------
- # Dashboard options
- #-----------------------------------------------------------------------------
- set(WITH_KWSTYLE FALSE)
- set(WITH_MEMCHECK FALSE)
- set(WITH_COVERAGE FALSE)
- set(WITH_DOCUMENTATION FALSE)
- #set(DOCUMENTATION_ARCHIVES_OUTPUT_DIRECTORY ) # for example: $ENV{HOME}/Projects/Doxygen
- set(CTEST_BUILD_CONFIGURATION "Release")
- set(CTEST_TEST_TIMEOUT 500)
- set(CTEST_BUILD_FLAGS "") # Use multiple CPU cores to build. For example "-j -l4" on unix
- set(CTEST_PARALLEL_LEVEL 8) # Number of tests running in parallel
- #-----------------------------------------------------------------------------
- # Additional CMakeCache options
- #-----------------------------------------------------------------------------
- set(ADDITIONAL_CMAKECACHE_OPTION "
- ")
- #-----------------------------------------------------------------------------
- # List of test that should be explicitly disabled on this machine
- #-----------------------------------------------------------------------------
- set(TEST_TO_EXCLUDE_REGEX "")
- #-----------------------------------------------------------------------------
- # Set any extra environment variables here
- #-----------------------------------------------------------------------------
- if(UNIX)
- set(ENV{DISPLAY} ":0")
- endif()
- #-----------------------------------------------------------------------------
- # Required executables
- #-----------------------------------------------------------------------------
- find_program(CTEST_GIT_COMMAND NAMES git)
- find_program(CTEST_COVERAGE_COMMAND NAMES gcov)
- find_program(CTEST_MEMORYCHECK_COMMAND NAMES valgrind)
- #-----------------------------------------------------------------------------
- # Build Name
- #-----------------------------------------------------------------------------
- # Update the following variable to match the chosen build options. This variable is used to
- # generate both the build directory and the build name.
- # See http://my.cdash.org/CDash/index.php?project=CTK for examples
- set(BUILD_OPTIONS_STRING "${MY_BITNESS}bits-QT${MY_QT_VERSION}")
- #-----------------------------------------------------------------------------
- # Directory name
- #-----------------------------------------------------------------------------
- set(DIRECTORY_NAME "CTK")
- #-----------------------------------------------------------------------------
- # Build directory
- #-----------------------------------------------------------------------------
- set(CTEST_BINARY_DIRECTORY "${CTEST_DASHBOARD_ROOT}/${DIRECTORY_NAME}-${DIRECTORY_IDENTIFIER}-build")
- file(WRITE "${CTEST_DASHBOARD_ROOT}/${DIRECTORY_NAME}-${DIRECTORY_IDENTIFIER}-build - ${BUILD_OPTIONS_STRING}-${CTEST_BUILD_CONFIGURATION}-${SCRIPT_MODE}.txt" "Generated by ${CTEST_SCRIPT_NAME}")
- #-----------------------------------------------------------------------------
- # Source directory
- #-----------------------------------------------------------------------------
- set(CTEST_SOURCE_DIRECTORY "${CTEST_DASHBOARD_ROOT}/${DIRECTORY_NAME}-${DIRECTORY_IDENTIFIER}")
- ##########################################
- # WARNING: DO NOT EDIT BEYOND THIS POINT #
- ##########################################
- set(CTEST_NOTES_FILES "${CTEST_SCRIPT_DIRECTORY}/${CTEST_SCRIPT_NAME}")
- #
- # Project specific properties
- #
- set(CTEST_PROJECT_NAME "CTK")
- set(CTEST_BUILD_NAME "${MY_OPERATING_SYSTEM}-${MY_COMPILER}-${BUILD_OPTIONS_STRING}-${CTEST_BUILD_CONFIGURATION}")
- #
- # Display build info
- #
- message("CTEST_SITE ................: ${CTEST_SITE}")
- message("CTEST_BUILD_NAME ..........: ${CTEST_BUILD_NAME}")
- message("SCRIPT_MODE ...............: ${SCRIPT_MODE}")
- message("CTEST_BUILD_CONFIGURATION .: ${CTEST_BUILD_CONFIGURATION}")
- message("WITH_KWSTYLE ..............: ${WITH_KWSTYLE}")
- message("WITH_COVERAGE: ............: ${WITH_COVERAGE}")
- message("WITH_MEMCHECK .............: ${WITH_MEMCHECK}")
- message("WITH_PACKAGES .............: ${WITH_PACKAGES}")
- message("WITH_DOCUMENTATION ........: ${WITH_DOCUMENTATION}")
- message("DOCUMENTATION_ARCHIVES_OUTPUT_DIRECTORY: ${DOCUMENTATION_ARCHIVES_OUTPUT_DIRECTORY}")
- #
- # Convenient function allowing to download a file
- #
- function(download_file url dest)
- file(DOWNLOAD ${url} ${dest} STATUS status)
- list(GET status 0 error_code)
- list(GET status 1 error_msg)
- if(error_code)
- message(FATAL_ERROR "error: Failed to download ${url} - ${error_msg}")
- endif()
- endfunction()
- #
- # Download and include dashboard driver script
- #
- set(url https://raw.githubusercontent.com/commontk/CTK/master/CMake/ctkDashboardDriverScript.cmake)
- set(dest ${CTEST_SCRIPT_DIRECTORY}/${CTEST_SCRIPT_NAME}.driver)
- download_file(${url} ${dest})
- include(${dest})
|