1 Star 0 Fork 0

WangYue0426/pastix

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CTestConfig.cmake 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
Mathieu Faverge 提交于 2019-11-18 13:05 . Extern SPM module
## 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 "PaStiX")
set(CTEST_NIGHTLY_START_TIME "00:00:00 GMT")
set(CTEST_DROP_METHOD "https")
set(CTEST_DROP_SITE "cdash-ci.inria.fr")
set(CTEST_DROP_LOCATION "/submit.php?project=PaStiX")
set(CTEST_DROP_SITE_CDASH TRUE)
#--------------------------------------------------------------------
# BUILDNAME variable construction
# This variable will be used to set the build name which will appear
# on the Pastix 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_C_COMPILER_NAME ${CMAKE_C_COMPILER} NAME)
set(BUILDNAME "${BUILDNAME}-${CMAKE_C_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 Pastix
if(PASTIX_WITH_MPI)
set(BUILDNAME "${BUILDNAME}-MPI")
endif(PASTIX_WITH_MPI)
if(PASTIX_WITH_STARPU)
set(BUILDNAME "${BUILDNAME}-StarPU")
endif(PASTIX_WITH_STARPU)
if(PASTIX_WITH_PARSEC)
set(BUILDNAME "${BUILDNAME}-Parsec")
endif(PASTIX_WITH_PARSEC)
endif()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangyue0426/pastix.git
git@gitee.com:wangyue0426/pastix.git
wangyue0426
pastix
pastix
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385