diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2016-11-22 21:18:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-11-28 21:40:13 (GMT) |
commit | 745b56f58c8147aa6015a918f3bfd19abc807b48 (patch) | |
tree | dc18348457f6d82a3d83bf16ef005433be7a116e /Modules/FindGnuTLS.cmake | |
parent | 0ab9cb4699dbbba808f243c4dc32aebe23a69a34 (diff) | |
download | CMake-745b56f58c8147aa6015a918f3bfd19abc807b48.zip CMake-745b56f58c8147aa6015a918f3bfd19abc807b48.tar.gz CMake-745b56f58c8147aa6015a918f3bfd19abc807b48.tar.bz2 |
Find*.cmake: drop the comments before including FPHSA
No need to explain this over and over again. While at it, do some other
minor cleanups to whitespace and comments (i.e. delete them).
Diffstat (limited to 'Modules/FindGnuTLS.cmake')
-rw-r--r-- | Modules/FindGnuTLS.cmake | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/FindGnuTLS.cmake b/Modules/FindGnuTLS.cmake index a6ab092..1a97d99 100644 --- a/Modules/FindGnuTLS.cmake +++ b/Modules/FindGnuTLS.cmake @@ -50,8 +50,6 @@ find_library(GNUTLS_LIBRARY NAMES gnutls libgnutls mark_as_advanced(GNUTLS_INCLUDE_DIR GNUTLS_LIBRARY) -# handle the QUIETLY and REQUIRED arguments and set GNUTLS_FOUND to TRUE if -# all listed variables are TRUE include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake) FIND_PACKAGE_HANDLE_STANDARD_ARGS(GnuTLS REQUIRED_VARS GNUTLS_LIBRARY GNUTLS_INCLUDE_DIR @@ -61,4 +59,3 @@ if(GNUTLS_FOUND) set(GNUTLS_LIBRARIES ${GNUTLS_LIBRARY}) set(GNUTLS_INCLUDE_DIRS ${GNUTLS_INCLUDE_DIR}) endif() - |