diff --git a/CTestConfig.cmake b/CTestConfig.cmake index 4ff7e12ca53d04e9b89db0438b7c497befb91114..084b75bd876952bf966224d60e9a42a4ef85ca78 100644 --- a/CTestConfig.cmake +++ b/CTestConfig.cmake @@ -4,9 +4,9 @@ ## # The following are required to uses Dart and the Cdash dashboard ## ENABLE_TESTING() ## INCLUDE(CTest) -set(CTEST_PROJECT_NAME "ScalFMM") -set(CTEST_NIGHTLY_START_TIME "00:00:00 GMT") -set(CTEST_SUBMIT_URL "http://cdash.inria.fr/CDash/submit.php?project=scalfmm") +#set(CTEST_PROJECT_NAME "ScalFMM") +#set(CTEST_NIGHTLY_START_TIME "00:00:00 GMT") +#set(CTEST_SUBMIT_URL "http://cdash.inria.fr/CDash/submit.php?project=scalfmm") #-------------------------------------------------------------------- # BUILDNAME variable construction @@ -14,37 +14,37 @@ set(CTEST_SUBMIT_URL "http://cdash.inria.fr/CDash/submit.php?project=scalfmm") # on the Chameleon dashboard http://cdash.inria.fr/CDash/ #-------------------------------------------------------------------- # Start with the short system name, e.g. "Linux", "FreeBSD" or "Windows" -if(NOT BUILDNAME) - - set(BUILDNAME "${CMAKE_SYSTEM_NAME}") - - # Add i386 or amd64 - if(CMAKE_SIZEOF_VOID_P EQUAL 8) - set(BUILDNAME "${BUILDNAME}-amd64") - else() - set(BUILDNAME "${BUILDNAME}-i386") - endif() - - # Add compiler name - get_filename_component(CMAKE_CXX_COMPILER_NAME ${CMAKE_CXX_COMPILER} NAME) - set(BUILDNAME "${BUILDNAME}-${CMAKE_CXX_COMPILER_NAME}") - - # Add the build type, e.g. "Debug, Release..." - if(CMAKE_BUILD_TYPE) - set(BUILDNAME "${BUILDNAME}-${CMAKE_BUILD_TYPE}") - endif(CMAKE_BUILD_TYPE) - - # Specific options of Scalfmm - if(SCALFMM_USE_SSE) - set(BUILDNAME "${BUILDNAME}-sse") - endif() - - if(SCALFMM_USE_BLAS) - set(BUILDNAME "${BUILDNAME}-blas") - endif() - - if(SCALFMM_USE_MPI) - set(BUILDNAME "${BUILDNAME}-mpi") - endif() - -endif() +#if(NOT BUILDNAME) +# +# set(BUILDNAME "${CMAKE_SYSTEM_NAME}") +# +# # Add i386 or amd64 +# if(CMAKE_SIZEOF_VOID_P EQUAL 8) +# set(BUILDNAME "${BUILDNAME}-amd64") +# else() +# set(BUILDNAME "${BUILDNAME}-i386") +# endif() +# +# # Add compiler name +# get_filename_component(CMAKE_CXX_COMPILER_NAME ${CMAKE_CXX_COMPILER} NAME) +# set(BUILDNAME "${BUILDNAME}-${CMAKE_CXX_COMPILER_NAME}") +# +# # Add the build type, e.g. "Debug, Release..." +# if(CMAKE_BUILD_TYPE) +# set(BUILDNAME "${BUILDNAME}-${CMAKE_BUILD_TYPE}") +# endif(CMAKE_BUILD_TYPE) +# +# # Specific options of Scalfmm +# if(SCALFMM_USE_SSE) +# set(BUILDNAME "${BUILDNAME}-sse") +# endif() +# +# if(SCALFMM_USE_BLAS) +# set(BUILDNAME "${BUILDNAME}-blas") +# endif() +# +# if(SCALFMM_USE_MPI) +# set(BUILDNAME "${BUILDNAME}-mpi") +# endif() +# +#endif()