diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-06-08 12:59:50 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-06-08 12:59:50 +0200 |
commit | 800d7df9aaff31b30f2762f5ae6d0dc0378ecef0 (patch) | |
tree | 3d1407067200d1511b3cbcd76d92894e3975db33 | |
parent | 3d9183557f3ad9b599c812c03a445453e7d4f703 (diff) | |
download | biboumi-800d7df9aaff31b30f2762f5ae6d0dc0378ecef0.tar.gz biboumi-800d7df9aaff31b30f2762f5ae6d0dc0378ecef0.tar.bz2 biboumi-800d7df9aaff31b30f2762f5ae6d0dc0378ecef0.tar.xz biboumi-800d7df9aaff31b30f2762f5ae6d0dc0378ecef0.zip |
Properly search for libbotan even in a botan-1.11 subdirectory
-rw-r--r-- | cmake/Modules/FindBotan.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/Modules/FindBotan.cmake b/cmake/Modules/FindBotan.cmake index f53680d..aa8f58c 100644 --- a/cmake/Modules/FindBotan.cmake +++ b/cmake/Modules/FindBotan.cmake @@ -16,9 +16,10 @@ # This file is in the public domain find_path(BOTAN_INCLUDE_DIRS NAMES botan/botan.h + PATH_SUFFIXES botan-1.11 DOC "The botan include directory") -find_library(BOTAN_LIBRARIES NAMES botan +find_library(BOTAN_LIBRARIES NAMES botan botan-1.11 DOC "The botan library") # Use some standard module to handle the QUIETLY and REQUIRED arguments, and |