Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
freediameter
Commits
8d95d265
Commit
8d95d265
authored
Oct 02, 2009
by
Sebastien Decugis
Browse files
Added new FindGNUTLS cmake module
parent
511a7a5a
Changes
1
Hide whitespace changes
Inline
Side-by-side
cmake/Modules/FindGNUTLS.cmake
0 → 100644
View file @
8d95d265
# - Find gnutls
# Find the native GNUTLS includes and library
#
# GNUTLS_FOUND - True if gnutls found.
# GNUTLS_INCLUDE_DIRS - where to find gnutls.h, etc.
# GNUTLS_LIBRARIES - List of libraries when using gnutls.
if
(
GNUTLS_INCLUDE_DIRS
)
set
(
GNUTLS_FIND_QUIETLY TRUE
)
endif
(
GNUTLS_INCLUDE_DIRS
)
# Include dir
find_path
(
GNUTLS_INCLUDE_DIR
NAMES
gnutls.h
gnutls/gnutls.h
)
# Library
find_library
(
GNUTLS_LIBRARY
NAMES gnutls
)
# handle the QUIETLY and REQUIRED arguments and set GNUTLS_FOUND to TRUE if
# all listed variables are TRUE
INCLUDE
(
FindPackageHandleStandardArgs
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
GNUTLS DEFAULT_MSG GNUTLS_LIBRARY GNUTLS_INCLUDE_DIR
)
IF
(
GNUTLS_FOUND
)
SET
(
GNUTLS_LIBRARIES
${
GNUTLS_LIBRARY
}
)
ELSE
(
GNUTLS_FOUND
)
SET
(
GNUTLS_LIBRARIES
)
ENDIF
(
GNUTLS_FOUND
)
# Lastly make it so that the GNUTLS_LIBRARY and GNUTLS_INCLUDE_DIR variables
# only show up under the advanced options in the gui cmake applications.
MARK_AS_ADVANCED
(
GNUTLS_LIBRARIES GNUTLS_INCLUDE_DIRS
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment