diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-12-20 15:14:16 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-01-11 12:14:57 (GMT) |
commit | d6877e6c405eb67f0e3e9eae783de02d1d8be659 (patch) | |
tree | 6543472aba205ed8ef96e298443fc50e9ee56a9a /Modules/FindGTK2.cmake | |
parent | 3e5fbbd6cdc472cdf7823cf81c0e527c79653188 (diff) | |
download | CMake-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/FindGTK2.cmake')
-rw-r--r-- | Modules/FindGTK2.cmake | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/FindGTK2.cmake b/Modules/FindGTK2.cmake index 1f447f1..e1b22b6 100644 --- a/Modules/FindGTK2.cmake +++ b/Modules/FindGTK2.cmake @@ -165,7 +165,6 @@ #============================================================= include(${CMAKE_CURRENT_LIST_DIR}/SelectLibraryConfigurations.cmake) -include(${CMAKE_CURRENT_LIST_DIR}/CMakeParseArguments.cmake) function(_GTK2_GET_VERSION _OUT_major _OUT_minor _OUT_micro _gtkversion_hdr) file(STRINGS ${_gtkversion_hdr} _contents REGEX "#define GTK_M[A-Z]+_VERSION[ \t]+") |