Mercurial > trustbridge
annotate cmake/FindPolarSSL.cmake @ 1378:3c61ab983f9b
(Auto) Update l10n
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Thu, 15 Jan 2015 11:50:19 +0100 |
parents | a974b61a5cce |
children |
rev | line source |
---|---|
1160
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
1 # Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik |
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
2 # Software engineering by Intevation GmbH |
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
3 # |
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
4 # This file is Free Software under the GNU GPL (v>=2) |
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
5 # and comes with ABSOLUTELY NO WARRANTY! |
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
6 # See LICENSE.txt for details. |
36 | 7 # - Try to find PolarSSL |
8 | |
9 # Find the include directories | |
10 find_path(POLARSSL_INCLUDE_DIR NAMES polarssl/ssl.h) | |
11 | |
12 find_library(POLARSSL_LIBRARIES NAMES polarssl) | |
13 | |
14 include(FindPackageHandleStandardArgs) | |
15 | |
16 find_package_handle_standard_args(POLARSSL | |
17 REQUIRED_VARS POLARSSL_INCLUDE_DIR POLARSSL_LIBRARIES | |
18 ) |