diff options
author | Alex Neundorf <neundorf@kde.org> | 2012-02-18 18:19:37 +0100 |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2012-02-18 18:19:37 +0100 |
commit | d30b442d47a2d5092026b10960c51754060d402c (patch) | |
tree | 600613dd5f248db8122b278908721d63261df84b | |
parent | 97757b56d09b77b8fdd25ce785f44fcbde18617c (diff) | |
download | extra-cmake-modules-d30b442d47a2d5092026b10960c51754060d402c.tar.gz extra-cmake-modules-d30b442d47a2d5092026b10960c51754060d402c.tar.bz2 |
-add CMAKECONFIG_INSTALL_PREFIX (lib/cmake/ )
Alex
-rw-r--r-- | kde-modules/KDEInstallDirs.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kde-modules/KDEInstallDirs.cmake b/kde-modules/KDEInstallDirs.cmake index 45dd6877..627a5533 100644 --- a/kde-modules/KDEInstallDirs.cmake +++ b/kde-modules/KDEInstallDirs.cmake @@ -8,6 +8,7 @@ # BUNDLE_INSTALL_DIR - Mac only: the directory where application bundles will be installed (default is /Applications/KDE4 ) # SBIN_INSTALL_DIR - the directory where system executables will be installed (default is prefix/sbin) # LIB_INSTALL_DIR - the directory where libraries will be installed (default is prefix/lib) +# CMAKECONFIG_INSTALL_PREFIX - the prefix under which packages will create their own subdirectory for their CMake configuration files # CONFIG_INSTALL_DIR - the directory where config files will be installed # DATA_INSTALL_DIR - the parent directory where applications can install their data # HTML_INSTALL_DIR - the directory where HTML documentation will be installed @@ -131,6 +132,7 @@ _set_fancy(INCLUDE_INSTALL_DIR "include" _set_fancy(PLUGIN_INSTALL_DIR "${LIB_INSTALL_DIR}/kde4" "The install dir where plugins will be installed (default is ${LIB_INSTALL_DIR}/kde4)") _set_fancy(IMPORTS_INSTALL_DIR "${PLUGIN_INSTALL_DIR}/imports" "The install dir where imports will be installed") +_set_fancy(CMAKECONFIG_INSTALL_PREFIX "${LIB_INSTALL_DIR}/cmake" "The prefix under which packages will create their own subdirectory for their CMake configuration files") _set_fancy(CONFIG_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/config" "The config file install dir") _set_fancy(DATA_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/apps" "The parent directory where applications can install their data") _set_fancy(HTML_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/doc/HTML" "The HTML install dir for documentation") |