Skip to content
Snippets Groups Projects
Commit 1e3d3baf authored by stefan's avatar stefan
Browse files

CTest, fix naming problem

git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2275 5a81b35b-ba03-0410-adc8-b2c5c5119f08
parent 0cbc585d
Branches
Tags
No related merge requests found
......@@ -11,3 +11,17 @@ set(CTEST_DROP_METHOD "http")
set(CTEST_DROP_SITE "kb-pdwg1059-06.pz.unibas.ch")
set(CTEST_DROP_LOCATION "/cdash/submit.php?project=OpenStructure")
set(CTEST_DROP_SITE_CDASH TRUE)
if ("${CMAKE_NATIVE_ARCH}" MATCHES "64")
set(CMAKE_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}64bit")
endif()
if (NOT ENABLE_IMG)
set(CMAKE_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-no_img")
endif()
if (NOT ENABLE_GFX)
set(CMAKE_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-no_gfx")
endif()
if (NOT ENABLE_UI)
set(CMAKE_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-no_ui")
endif()
message("BUILD ${CMAKE_SYSTEM_NAME}")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment