diff options
author | Volker Krause <vkrause@kde.org> | 2006-07-11 12:37:11 +0000 |
---|---|---|
committer | Volker Krause <vkrause@kde.org> | 2006-07-11 12:37:11 +0000 |
commit | 28f71a8c5d049579bac8fd6e51fad18ccd942ee4 (patch) | |
tree | 4c5be566e1916f9208781ab6850795fa0375f5b5 /modules | |
parent | ec206a794824e3b2874cb0433104be5c8c2c70b6 (diff) | |
download | extra-cmake-modules-28f71a8c5d049579bac8fd6e51fad18ccd942ee4.tar.gz extra-cmake-modules-28f71a8c5d049579bac8fd6e51fad18ccd942ee4.tar.bz2 |
Allow to manually set the LIB_INSTALL_DIR (needed to install into lib64).
svn path=/trunk/KDE/kdelibs/; revision=560859
Diffstat (limited to 'modules')
-rw-r--r-- | modules/FindKDE4Internal.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index d30ee8cd..b723517f 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -196,7 +196,7 @@ include (CheckCXXCompilerFlag) ## the following are directories where stuff will be installed to set(BIN_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/bin" CACHE PATH "The kde info install dir (default prefix/info)" FORCE) set(SBIN_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/sbin" CACHE PATH "The kde info install dir (default prefix/info)" FORCE) - set(LIB_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/lib" CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is /lib)" FORCE) + set(LIB_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/lib" CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is /lib)") set(LIBEXEC_INSTALL_DIR "${LIB_INSTALL_DIR}/kde4/libexec" CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is /lib)" FORCE) set(PLUGIN_INSTALL_DIR "${LIB_INSTALL_DIR}/kde4" CACHE PATH "The subdirectory relative to the install prefix where plugins will be installed (default is ${KDE4_LIB_INSTALL_DIR}/kde4)" FORCE) set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include" CACHE PATH "The subdirectory to the header prefix" FORCE) |