diff options
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 551a8632948..d0461e2d2ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,11 +49,12 @@ if(CONF_DIR) else(CONF_DIR) SET(CONF_DIR ${PREFIX}/etc) endif(CONF_DIR) +SET(LIBSDIR ${CMAKE_INSTALL_PREFIX}/lib) message("* Will install to: ${CMAKE_INSTALL_PREFIX}") message("* With config dir at: ${CONF_DIR}") +message("* Libs install dir at: ${LIBSDIR}") -SET(LIBSDIR ${CMAKE_INSTALL_PREFIX}/lib) FIND_LIBRARY(SSLLIB NAMES ssl DOC "SSL library") FIND_LIBRARY(ZLIB z "Zlib library") |