summaryrefslogtreecommitdiffstats
path: root/common/CMakeLists.txt
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2015-10-23 09:24:55 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2015-10-23 09:24:55 +0200
commit88556fa0f4040792aacb2ad1af28b2f61b365448 (patch)
tree49400c2e4cb8c46b048ad126336c2bb6288ab635 /common/CMakeLists.txt
parent26c879c241ff3ce207d5ae754818fea1b50bd153 (diff)
downloadsink-88556fa0f4040792aacb2ad1af28b2f61b365448.tar.gz
sink-88556fa0f4040792aacb2ad1af28b2f61b365448.zip
Made headers installable and install headers
Diffstat (limited to 'common/CMakeLists.txt')
-rw-r--r--common/CMakeLists.txt15
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 @@
1include_directories(${CMAKE_CURRENT_BINARY_DIR}) 1include_directories(${CMAKE_CURRENT_BINARY_DIR})
2include_directories(domain)
2 3
3project(akonadi2common) 4project(akonadi2common)
4 5
@@ -64,3 +65,17 @@ SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX)
64qt5_use_modules(${PROJECT_NAME} Network) 65qt5_use_modules(${PROJECT_NAME} Network)
65target_link_libraries(${PROJECT_NAME} ${storage_LIBS} KF5::Async) 66target_link_libraries(${PROJECT_NAME} ${storage_LIBS} KF5::Async)
66install(TARGETS ${PROJECT_NAME} ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) 67install(TARGETS ${PROJECT_NAME} ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
68
69install(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)