diff options
author | panaut0lordv <panaut0lordv@gmail.com> | 2009-01-28 00:57:25 +0100 |
---|---|---|
committer | panaut0lordv <panaut0lordv@gmail.com> | 2009-01-28 00:57:25 +0100 |
commit | 44d419e328af4196898a6cb145d137cf0e81a089 (patch) | |
tree | d34434ae7164cedf7cb7d92ef3707b8ea0f8d23a | |
parent | 94f0a02f66a26727860047a614c6b92f20ca62ae (diff) |
Cmake - more handy lib install dir.
--HG--
branch : trunk
-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") |