Mercurial > trustbridge
annotate cmake/FindPolarSSL.cmake @ 1046:e10bc7372545 0.9.1
Removed tag 0.9.1
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Thu, 04 Sep 2014 16:15:08 +0200 |
parents | 81183b721b51 |
children | a974b61a5cce |
rev | line source |
---|---|
36 | 1 # - Try to find PolarSSL |
2 | |
3 # Find the include directories | |
4 find_path(POLARSSL_INCLUDE_DIR NAMES polarssl/ssl.h) | |
5 | |
6 find_library(POLARSSL_LIBRARIES NAMES polarssl) | |
7 | |
8 include(FindPackageHandleStandardArgs) | |
9 | |
10 find_package_handle_standard_args(POLARSSL | |
11 REQUIRED_VARS POLARSSL_INCLUDE_DIR POLARSSL_LIBRARIES | |
12 ) |