diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/MacroLogFeature.cmake | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/MacroLogFeature.cmake b/modules/MacroLogFeature.cmake index 55f7b69f..f48a6cc2 100644 --- a/modules/MacroLogFeature.cmake +++ b/modules/MacroLogFeature.cmake @@ -66,12 +66,12 @@ MACRO(MACRO_LOG_FEATURE _var _package _description _url ) # _required _minvers _       ENDIF (${_required} MATCHES "[Tt][Rr][Uu][Ee]")     ENDIF (${_var}) -   SET(_logtext "> ${_package}") +   SET(_logtext "+ ${_package}")     IF (${_minvers} MATCHES ".*")       SET(_logtext "${_logtext}, ${_minvers}")     ENDIF (${_minvers} MATCHES ".*") -   SET(_logtext "${_logtext}: ${_description}; ${_url};") +   SET(_logtext "${_logtext}: ${_description} <${_url}>")     IF (${_comments} MATCHES ".*")       SET(_logtext "${_logtext}\n${_comments}")     ENDIF (${_comments} MATCHES ".*") @@ -96,7 +96,7 @@ MACRO(MACRO_DISPLAY_FEATURE_LOG)     IF (EXISTS ${_file})        FILE(READ ${_file} _enabled)        FILE(REMOVE ${_file}) -      SET(_summary "${_summary}----------------------------------------------------------------------------------\n-- The following list of OPTIONAL packages were located on your system.         --\n-- You will have all the following features available from this software.       --\n----------------------------------------------------------------------------------\n${_enabled}") +      SET(_summary "${_summary}--------------------------------------------------------------------------------\n-- The following list of packages were located on your system.                --\n-- You will have all the following features available from this software.     --\n--------------------------------------------------------------------------------\n${_enabled}")  #      SET(_summary "${_summary}Enabled Features:\n${_enabled}")     ENDIF (EXISTS ${_file}) @@ -104,7 +104,7 @@ MACRO(MACRO_DISPLAY_FEATURE_LOG)     IF (EXISTS ${_file})        FILE(READ ${_file} _disabled)        FILE(REMOVE ${_file}) -      SET(_summary "${_summary}----------------------------------------------------------------------------------\n-- The following list of OPTIONAL packages could not be located on your system. --\n-- Please consider installing them to enable more features of this software.    --\n----------------------------------------------------------------------------------\n${_disabled}") +      SET(_summary "${_summary}--------------------------------------------------------------------------------\n-- The following list of packages could not be located on your system.        --\n-- Consider installing them to enable more features from this software.       --\n--------------------------------------------------------------------------------\n${_disabled}")  #      SET(_summary "${_summary}Disabled Features:\n${_disabled}")     ENDIF (EXISTS ${_file})     MESSAGE(STATUS "${_summary}")  | 
