diff options
author | Ken Martin <ken.martin@kitware.com> | 2009-09-03 19:29:29 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2009-09-03 19:29:29 (GMT) |
commit | f686dbecb6c25178954b8190e95a3a265e9b2813 (patch) | |
tree | 9007c583a292169aec33d7a193de95ca91e6ea41 /Modules/FeatureSummary.cmake | |
parent | 5624be360e555f3a4505f69cae3f582b2e4e835a (diff) | |
download | CMake-f686dbecb6c25178954b8190e95a3a265e9b2813.zip CMake-f686dbecb6c25178954b8190e95a3a265e9b2813.tar.gz CMake-f686dbecb6c25178954b8190e95a3a265e9b2813.tar.bz2 |
some white space fixes for the book
Diffstat (limited to 'Modules/FeatureSummary.cmake')
-rw-r--r-- | Modules/FeatureSummary.cmake | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Modules/FeatureSummary.cmake b/Modules/FeatureSummary.cmake index 788ad02..f2aff47 100644 --- a/Modules/FeatureSummary.cmake +++ b/Modules/FeatureSummary.cmake @@ -2,19 +2,21 @@ # # PRINT_ENABLED_FEATURES() # Print a summary of all enabled features. By default all successfull -# FIND_PACKAGE() calls will appear here, except the ones which used the QUIET keyword. -# Additional features can be added by appending an entry to the global ENABLED_FEATURES -# property. If SET_FEATURE_INFO() is used for that feature, the output will be much -# more informative. +# FIND_PACKAGE() calls will appear here, except the ones which used the +# QUIET keyword. Additional features can be added by appending an entry +# to the global ENABLED_FEATURES property. If SET_FEATURE_INFO() is +# used for that feature, the output will be much more informative. # # PRINT_DISABLED_FEATURES() -# Same as PRINT_ENABLED_FEATURES(), but for disabled features. It can be extended -# the same way by adding to the global property DISABLED_FEATURES. +# Same as PRINT_ENABLED_FEATURES(), but for disabled features. It can +# be extended the same way by adding to the global property +# DISABLED_FEATURES. # # SET_FEATURE_INFO(NAME DESCRIPTION [URL [COMMENT] ] ) # Use this macro to set up information about the named feature, which will # then be displayed by PRINT_ENABLED/DISABLED_FEATURES(). -# Example: SET_FEATURE_INFO(LibXml2 "XML processing library." "http://xmlsoft.org/") +# Example: SET_FEATURE_INFO(LibXml2 "XML processing library." +# "http://xmlsoft.org/") # |