From a1ea95329455df89d8c89b909b05662e273817dc Mon Sep 17 00:00:00 2001 From: hristov Date: Sat, 16 Jan 2010 10:12:11 +0000 Subject: [PATCH] Suppress debug info (Stefan) --- cmake/modules/ALICEMacros.cmake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmake/modules/ALICEMacros.cmake b/cmake/modules/ALICEMacros.cmake index 4d462c6f354..5b7bf3df600 100644 --- a/cmake/modules/ALICEMacros.cmake +++ b/cmake/modules/ALICEMacros.cmake @@ -42,7 +42,7 @@ Function (AddLibrary LIB SRCS DHDRS) # Adds an AliRoot library as a target - Message(STATUS Debug ${LIB}) + # Message(STATUS Debug ${LIB}) Set(_path) List(LENGTH SRCS _len) If(_len GREATER 0) @@ -62,10 +62,10 @@ Function (AddLibrary LIB SRCS DHDRS) Endif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${_path}/${LIB}LinkDef.h) Endif(_path) - Message(STATUS Debug - ${CMAKE_CURRENT_SOURCE_DIR} - ${LIB} - ${LDEF}) + # Message(STATUS Debug - ${CMAKE_CURRENT_SOURCE_DIR} - ${LIB} - ${LDEF}) Set(DICT) - Message(STATUS Debug ${LDEF}) + # Message(STATUS Debug ${LDEF}) If(LDEF) # even with no cxx files, one may want to build an empty lib as a placeholder # in AliRoot this is signalled by the existence of an (empty) ${LIB}LinkDef.h @@ -189,7 +189,7 @@ Function (AddExecutable BIN SRCS LIBS) # Adds an AliRoot executable as a target String(REGEX REPLACE "(.*)exe" "\\1" executable_name "${BIN}") - MESSAGE("EXECUTABLE: ${executable_name}") + # MESSAGE("EXECUTABLE: ${executable_name}") Add_Executable(${BIN} ${SRCS}) Target_Link_Libraries(${BIN} ${ROOT_LIBRARIES} ${LIBS}) -- 2.39.3