diff options
author | David Cole <david.cole@kitware.com> | 2011-09-01 19:13:51 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-09-01 19:13:51 (GMT) |
commit | 28e1dc8fe083bfc73599a03392100914babf8bee (patch) | |
tree | bdedaa27d1ad8e4f67e11c19d22a6a6bfe8eaf31 | |
parent | f380278d914e21f9189dfac8cdd8c0e7106f5d9a (diff) | |
parent | 356cef21987fccbf265f77800ff7f94cff995fb9 (diff) | |
download | CMake-28e1dc8fe083bfc73599a03392100914babf8bee.zip CMake-28e1dc8fe083bfc73599a03392100914babf8bee.tar.gz CMake-28e1dc8fe083bfc73599a03392100914babf8bee.tar.bz2 |
Merge topic 'feature_summary_formatting'
356cef2 Make the formatting of feature_summary output a little better.
-rw-r--r-- | Modules/FeatureSummary.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FeatureSummary.cmake b/Modules/FeatureSummary.cmake index 570fb7b..885762a 100644 --- a/Modules/FeatureSummary.cmake +++ b/Modules/FeatureSummary.cmake @@ -302,7 +302,7 @@ FUNCTION(_FS_GET_FEATURE_SUMMARY _property _var _includeQuiet) IF(includeThisOne) - SET(_currentFeatureText "${_currentFeatureText}\n${_currentFeature}") + SET(_currentFeatureText "${_currentFeatureText}\n * ${_currentFeature}") GET_PROPERTY(_info GLOBAL PROPERTY _CMAKE_${_currentFeature}_REQUIRED_VERSION) IF(_info) SET(_currentFeatureText "${_currentFeatureText} (required version ${_info})") |