summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2009-09-03 19:29:29 (GMT)
committerKen Martin <ken.martin@kitware.com>2009-09-03 19:29:29 (GMT)
commitf686dbecb6c25178954b8190e95a3a265e9b2813 (patch)
tree9007c583a292169aec33d7a193de95ca91e6ea41 /Modules
parent5624be360e555f3a4505f69cae3f582b2e4e835a (diff)
downloadCMake-f686dbecb6c25178954b8190e95a3a265e9b2813.zip
CMake-f686dbecb6c25178954b8190e95a3a265e9b2813.tar.gz
CMake-f686dbecb6c25178954b8190e95a3a265e9b2813.tar.bz2
some white space fixes for the book
Diffstat (limited to 'Modules')
-rw-r--r--Modules/CPack.cmake5
-rw-r--r--Modules/FeatureSummary.cmake16
2 files changed, 12 insertions, 9 deletions
diff --git a/Modules/CPack.cmake b/Modules/CPack.cmake
index 0f0d880..6c30af8 100644
--- a/Modules/CPack.cmake
+++ b/Modules/CPack.cmake
@@ -375,8 +375,9 @@
# UPLOAD_DIRECTORY is the local directory where CPack will create the
# various archives for each of the components. The contents of this
# directory should be uploaded to a location accessible by the URL given
-# in the site argument. If omitted, CPack will use the directory CPackUploads
-# inside the CMake binary directory to store the generated archives.
+# in the site argument. If omitted, CPack will use the directory
+# CPackUploads inside the CMake binary directory to store the generated
+# archives.
#
# The ALL flag indicates that all components be downloaded. Otherwise, only
# those components explicitly marked as DOWNLOADED or that have a specified
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/")
#