aboutsummaryrefslogtreecommitdiff
path: root/modules/ECMGenerateExportHeader.cmake
diff options
context:
space:
mode:
authorChristophe Giboudeaux <christophe@krop.fr>2021-07-13 22:35:29 +0200
committerChristophe Giboudeaux <christophe@krop.fr>2021-07-13 22:35:29 +0200
commit8ac2f4f798012203d770049eb4a4374a3c5390ed (patch)
tree6d4c118216a6a655c75cd7350c06fb52263747dd /modules/ECMGenerateExportHeader.cmake
parent2a39f0b235c242592ae6658f33e7fc7b547f8c6d (diff)
downloadextra-cmake-modules-8ac2f4f798012203d770049eb4a4374a3c5390ed.tar.gz
extra-cmake-modules-8ac2f4f798012203d770049eb4a4374a3c5390ed.tar.bz2
Fix typos found by codespell
GIT_SILENT
Diffstat (limited to 'modules/ECMGenerateExportHeader.cmake')
-rw-r--r--modules/ECMGenerateExportHeader.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ECMGenerateExportHeader.cmake b/modules/ECMGenerateExportHeader.cmake
index 7b05e6fc..e8e1fb16 100644
--- a/modules/ECMGenerateExportHeader.cmake
+++ b/modules/ECMGenerateExportHeader.cmake
@@ -534,7 +534,7 @@ function(ecm_generate_export_header target)
endif()
set_property(TARGET ${target} APPEND PROPERTY AUTOGEN_TARGET_DEPENDS "${ARGS_EXPORT_FILE_NAME}")
- # build with all the API not excluded, ensure all deprecated API is visible in the build itselt
+ # build with all the API not excluded, ensure all deprecated API is visible in the build itself
_ecm_geh_generate_hex_number(_hexnumber ${ARGS_EXCLUDE_DEPRECATED_BEFORE_AND_AT})
set(_disabling_visibility_definition "${_macro_base_name}_DISABLE_DEPRECATED_BEFORE_AND_AT=${_hexnumber}")
target_compile_definitions(${target} PRIVATE "${_disabling_visibility_definition}")
@@ -763,7 +763,7 @@ function(ecm_generate_export_header target)
if (ARGS_STATIC_DEFINE)
set(_static_define_args STATIC_DEFINE "${ARGS_STATIC_DEFINE}")
endif()
- # for older cmake verions we have to manually append our generated content
+ # for older cmake versions we have to manually append our generated content
# for newer we use CUSTOM_CONTENT_FROM_VARIABLE
set(_custom_content_args)
set(_custom_content_args CUSTOM_CONTENT_FROM_VARIABLE _output)