SVN commit 1229874 by tbaumgart: Installation path for include and pkgconfig files follows CMAKE_INSTALL_PREFIX BUG: 271738 M +2 -2 CMakeLists.txt --- trunk/extragear/office/alkimia/libalkimia/CMakeLists.txt #1229873:1229874 @@ -66,11 +66,11 @@ install(TARGETS alkimia ${INSTALL_TARGETS_DEFAULT_ARGS} ) install(FILES ${alkimia_HEADERS} - DESTINATION ${KDE4_INCLUDE_DIR}/alkimia COMPONENT Devel) + DESTINATION ${INCLUDE_INSTALL_DIR}/alkimia COMPONENT Devel) if (NOT WIN32) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libalkimia.pc - DESTINATION ${KDE4_LIB_DIR}/pkgconfig) + DESTINATION ${LIB_INSTALL_DIR}/pkgconfig) endif(NOT WIN32) ########### documentation ###################