andre@1160: # Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik andre@1160: # Software engineering by Intevation GmbH andre@1160: # andre@1160: # This file is Free Software under the GNU GPL (v>=2) andre@1160: # and comes with ABSOLUTELY NO WARRANTY! andre@1160: # See LICENSE.txt for details. andre@36: # - Try to find PolarSSL andre@36: andre@36: # Find the include directories andre@36: find_path(POLARSSL_INCLUDE_DIR NAMES polarssl/ssl.h) andre@36: andre@36: find_library(POLARSSL_LIBRARIES NAMES polarssl) andre@36: andre@36: include(FindPackageHandleStandardArgs) andre@36: andre@36: find_package_handle_standard_args(POLARSSL andre@36: REQUIRED_VARS POLARSSL_INCLUDE_DIR POLARSSL_LIBRARIES andre@36: )