summaryrefslogtreecommitdiff
path: root/Modules/FeatureSummary.cmake
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2011-09-18 12:46:29 +0200
committerAlex Neundorf <neundorf@kde.org>2011-09-18 12:46:29 +0200
commitb7ac63e1c199e72a7af85125030ae369671a02b4 (patch)
tree74a343748244743eb3a320457e546f9f40f934b7 /Modules/FeatureSummary.cmake
parentf1cd7d289e7e9881a17cbb9de025313a86391be8 (diff)
downloadcmake-b7ac63e1c199e72a7af85125030ae369671a02b4.tar.gz
Fix typos in FeatureSummary.cmake (#12462)
Patch by Yury Kudrashov Alex
Diffstat (limited to 'Modules/FeatureSummary.cmake')
-rw-r--r--Modules/FeatureSummary.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/FeatureSummary.cmake b/Modules/FeatureSummary.cmake
index 885762ae97..2a09c41de8 100644
--- a/Modules/FeatureSummary.cmake
+++ b/Modules/FeatureSummary.cmake
@@ -2,7 +2,7 @@
#
# This module provides the macros feature_summary(), set_package_properties() and
# add_feature_info().
-# For compatiblity it also still provides set_package_info(), set_feature_info(),
+# For compatibility it also still provides set_package_info(), set_feature_info(),
# print_enabled_features() and print_disabled_features().
#
# These macros can be used to generate a summary of enabled and disabled
@@ -130,13 +130,13 @@
# PURPOSE "Enables odt-export in MyWordProcessor")
#
# find_package(DBUS)
-# set_package_properties(LibXml2 PROPERTIES TYPE RUNTIME
+# set_package_properties(DBUS PROPERTIES TYPE RUNTIME
# PURPOSE "Necessary to disable the screensaver during a presentation" )
#
# ADD_FEATURE_INFO(<name> <enabled> <description>)
# Use this macro to add information about a feature with the given <name>.
# <enabled> contains whether this feature is enabled or not, <description>
-# is a text descibing the feature.
+# is a text describing the feature.
# The information can be displayed using feature_summary() for ENABLED_FEATURES
# and DISABLED_FEATURES respectively.
#
@@ -344,7 +344,7 @@ FUNCTION(FEATURE_SUMMARY)
ENDIF()
IF(NOT _FS_WHAT)
- MESSAGE(FATAL_ERROR "The call to FEATURE_SUMMAY() doesn't set the required WHAT argument.")
+ MESSAGE(FATAL_ERROR "The call to FEATURE_SUMMARY() doesn't set the required WHAT argument.")
ENDIF()
SET(validWhatParts "ENABLED_FEATURES"