diff options
author | David Faure <faure@kde.org> | 2014-01-03 13:00:34 +0100 |
---|---|---|
committer | David Faure <faure@kde.org> | 2014-01-03 13:00:34 +0100 |
commit | f07ad821e4f1cec70293a95950934b25b0609217 (patch) | |
tree | a1b09cbfaea975c506ca1bd5cd9c1a5be3e4d9e6 | |
parent | 41e55025e17b2f8e17294bc8cff7b47e8f6af1f7 (diff) | |
download | kconfig-f07ad821e4f1cec70293a95950934b25b0609217.tar.gz kconfig-f07ad821e4f1cec70293a95950934b25b0609217.tar.bz2 |
Install all headers into camelcase FrameworkName.
-rw-r--r-- | src/gui/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index eef8c2a8..e6ef7468 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -15,7 +15,7 @@ add_library(KF5ConfigGui ${libkconfiggui_SRCS}) generate_export_header(KF5ConfigGui BASE_NAME KConfigGui) add_library(KF5::ConfigGui ALIAS KF5ConfigGui) -target_include_directories(KF5ConfigGui INTERFACE "$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}/kconfiggui>" "$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}/KConfigGui>") +target_include_directories(KF5ConfigGui INTERFACE "$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}/KConfigGui>") target_link_libraries(KF5ConfigGui PUBLIC Qt5::Gui Qt5::Xml KF5::ConfigCore) @@ -40,5 +40,5 @@ install(TARGETS KF5ConfigGui EXPORT KF5ConfigTargets ${INSTALL_TARGETS_DEFAULT_A install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kconfiggui_export.h ${KConfigGui_HEADERS} - DESTINATION ${INCLUDE_INSTALL_DIR}/kconfiggui COMPONENT Devel + DESTINATION ${INCLUDE_INSTALL_DIR}/KConfigGui COMPONENT Devel ) |