Mercurial > trustbridge
annotate cmake/FindPolarSSL.cmake @ 907:7bd75417e14e
Added .hgignore file.
author | Emanuel Schuetze <emanuel@intevation.de> |
---|---|
date | Thu, 14 Aug 2014 08:19:30 +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 ) |