summaryrefslogtreecommitdiffstats
path: root/Modules/FindGettext.cmake
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-12-20 15:14:16 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-01-11 12:14:57 (GMT)
commitd6877e6c405eb67f0e3e9eae783de02d1d8be659 (patch)
tree6543472aba205ed8ef96e298443fc50e9ee56a9a /Modules/FindGettext.cmake
parent3e5fbbd6cdc472cdf7823cf81c0e527c79653188 (diff)
downloadCMake-d6877e6c405eb67f0e3e9eae783de02d1d8be659.zip
CMake-d6877e6c405eb67f0e3e9eae783de02d1d8be659.tar.gz
CMake-d6877e6c405eb67f0e3e9eae783de02d1d8be659.tar.bz2
Don't include CMakeParseArguments
The cmake_parse_arguments command is builtin with version 3.5. The CMakeParseArguments module is empty and exists for backwards compatibility with CMake 3.4 and lower. Remove the includes of CMakeParseArguments from CMake's modules. The modules are always used with the current version of CMake. Leave the includes in the tests, as the tests may be run with an older version of CMake.
Diffstat (limited to 'Modules/FindGettext.cmake')
-rw-r--r--Modules/FindGettext.cmake2
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/FindGettext.cmake b/Modules/FindGettext.cmake
index 7718468..8035507 100644
--- a/Modules/FindGettext.cmake
+++ b/Modules/FindGettext.cmake
@@ -77,8 +77,6 @@ FIND_PACKAGE_HANDLE_STANDARD_ARGS(Gettext
REQUIRED_VARS GETTEXT_MSGMERGE_EXECUTABLE GETTEXT_MSGFMT_EXECUTABLE
VERSION_VAR GETTEXT_VERSION_STRING)
-include(${CMAKE_CURRENT_LIST_DIR}/CMakeParseArguments.cmake)
-
function(_GETTEXT_GET_UNIQUE_TARGET_NAME _name _unique_name)
set(propertyName "_GETTEXT_UNIQUE_COUNTER_${_name}")
get_property(currentCounter GLOBAL PROPERTY "${propertyName}")