diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-10-23 09:24:55 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-10-23 09:24:55 +0200 |
commit | 88556fa0f4040792aacb2ad1af28b2f61b365448 (patch) | |
tree | 49400c2e4cb8c46b048ad126336c2bb6288ab635 /common/CMakeLists.txt | |
parent | 26c879c241ff3ce207d5ae754818fea1b50bd153 (diff) | |
download | sink-88556fa0f4040792aacb2ad1af28b2f61b365448.tar.gz sink-88556fa0f4040792aacb2ad1af28b2f61b365448.zip |
Made headers installable and install headers
Diffstat (limited to 'common/CMakeLists.txt')
-rw-r--r-- | common/CMakeLists.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index 61019b3..b4a4703 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt | |||
@@ -1,4 +1,5 @@ | |||
1 | include_directories(${CMAKE_CURRENT_BINARY_DIR}) | 1 | include_directories(${CMAKE_CURRENT_BINARY_DIR}) |
2 | include_directories(domain) | ||
2 | 3 | ||
3 | project(akonadi2common) | 4 | project(akonadi2common) |
4 | 5 | ||
@@ -64,3 +65,17 @@ SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX) | |||
64 | qt5_use_modules(${PROJECT_NAME} Network) | 65 | qt5_use_modules(${PROJECT_NAME} Network) |
65 | target_link_libraries(${PROJECT_NAME} ${storage_LIBS} KF5::Async) | 66 | target_link_libraries(${PROJECT_NAME} ${storage_LIBS} KF5::Async) |
66 | install(TARGETS ${PROJECT_NAME} ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) | 67 | install(TARGETS ${PROJECT_NAME} ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) |
68 | |||
69 | install(FILES | ||
70 | clientapi.h | ||
71 | domain/applicationdomaintype.h | ||
72 | query.h | ||
73 | threadboundary.h | ||
74 | resultprovider.h | ||
75 | facadefactory.h | ||
76 | log.h | ||
77 | listmodelresult.h | ||
78 | bufferadaptor.h | ||
79 | facadeinterface.h | ||
80 | DESTINATION ${INCLUDE_INSTALL_DIR}/${PROJECT_NAME} COMPONENT Devel | ||
81 | ) | ||