aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2022-02-10 15:05:40 +0200
committerDimitris Apostolou <dimitris.apostolou@icloud.com>2022-02-10 15:34:00 +0200
commit402903e5caa15f483193cd10d97754ea73078f0e (patch)
tree873273caa578b8e2d5a5749aa72b1461c85b9cfc
parent8091fa010fe2e7404e70c5107c395c23a69218a1 (diff)
downloadextra-cmake-modules-402903e5caa15f483193cd10d97754ea73078f0e.tar.gz
extra-cmake-modules-402903e5caa15f483193cd10d97754ea73078f0e.tar.bz2
Fix typos
-rw-r--r--modules/ECMDeprecationSettings.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/ECMDeprecationSettings.cmake b/modules/ECMDeprecationSettings.cmake
index e298a2bf..8288cdf0 100644
--- a/modules/ECMDeprecationSettings.cmake
+++ b/modules/ECMDeprecationSettings.cmake
@@ -14,7 +14,7 @@ For the identifier "QT" this functions adds the definition "QT_DISABLE_DEPRECATE
Otherwise the name for the definition is generated using `${IDENTIFIER}_DISABLE_DEPRECATED_BEFORE_AND_AT`,
following the naming of the generated code in :kde-module:`ECMGenerateExportHeaders`.
The version for the definition can be overwritten, by passing definition name and the deprecation version
-as a CMake defintion. This allows one to exclude deprecations without having to edit the CMakeLists.txt file.
+as a CMake definition. This allows one to exclude deprecations without having to edit the CMakeLists.txt file.
This module provides the following function:
@@ -57,7 +57,7 @@ function (ecm_set_disabled_deprecation_versions)
list(LENGTH ARGS_UNPARSED_ARGUMENTS PAIR_COUNT)
math(EXPR is_even_number "${PAIR_COUNT} % 2")
if (NOT is_even_number EQUAL 0)
- message(FATAL_ERROR "Expected number of argumments an even number of identifiers and version")
+ message(FATAL_ERROR "Expected number of arguments is an even number of identifiers and version")
endif()
math(EXPR number_pairs "(${PAIR_COUNT} / 2) - 1")
foreach (it RANGE ${number_pairs})
@@ -92,7 +92,7 @@ function (ecm_set_disabled_deprecation_versions)
if (NOT CMAKE_MATCH_1)
message(FATAL_ERROR "Failed to get major version from ${DEPRECATION_VERSION}")
endif()
- # Add 1 to the major version and sture it as a hex value
+ # Add 1 to the major version and store it as a hex value
math(EXPR next_major_version "(${CMAKE_MATCH_1} + 1) * 65536 " OUTPUT_FORMAT HEXADECIMAL)
add_definitions(-D${DEPRECATION_NAME}_DEPRECATED_WARNINGS_SINCE=${next_major_version})
endif()