diff options
| author | Stephen Kelly <steveire@gmail.com> | 2013-10-11 11:37:10 +0200 | 
|---|---|---|
| committer | Stephen Kelly <steveire@gmail.com> | 2013-10-11 11:38:39 +0200 | 
| commit | f98b299611f1cc920f1d88ae942dfc24360fb4c1 (patch) | |
| tree | 544ecac483b532f3d203e88d5797dfc50c0e2fc8 /kde-modules | |
| parent | 6f4b7ead789b186a1e570366756bf48c34d6ccbf (diff) | |
| download | extra-cmake-modules-f98b299611f1cc920f1d88ae942dfc24360fb4c1.tar.gz extra-cmake-modules-f98b299611f1cc920f1d88ae942dfc24360fb4c1.tar.bz2 | |
Add the INCLUDE_INSTALL_DIR to the INTERFACE_INCLUDE_DIRS or all frameworks.
This is a new feature in CMake 2.8.12.
Diffstat (limited to 'kde-modules')
| -rw-r--r-- | kde-modules/KDEInstallDirs.cmake | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/kde-modules/KDEInstallDirs.cmake b/kde-modules/KDEInstallDirs.cmake index c3d4d7ca..d94adcf0 100644 --- a/kde-modules/KDEInstallDirs.cmake +++ b/kde-modules/KDEInstallDirs.cmake @@ -173,7 +173,9 @@ _set_fancy(DBUS_SYSTEM_SERVICES_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/dbus-1/syst  # This can then also be used for packaging with cpack.  set(INSTALL_TARGETS_DEFAULT_ARGS  RUNTIME DESTINATION "${BIN_INSTALL_DIR}"                                    LIBRARY DESTINATION "${LIB_INSTALL_DIR}" -                                  ARCHIVE DESTINATION "${LIB_INSTALL_DIR}" COMPONENT Devel ) +                                  ARCHIVE DESTINATION "${LIB_INSTALL_DIR}" COMPONENT Devel +                                  INCLUDES DESTINATION "${INCLUDE_INSTALL_DIR}" +)  # on the Mac support an extra install directory for application bundles | 
