Mercurial > trustbridge
annotate cmake/FindPolarSSL.cmake @ 1310:60e481aa75ca
(issue152) Do not return CryptUIDlgViewContext's return value
The return value is false if the user cancels the dialog.
But as the certificate has been shown this is not really an
error.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Mon, 13 Oct 2014 14:13:05 +0200 |
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 ) |