summaryrefslogtreecommitdiffstats
path: root/common/CMakeLists.txt
diff options
context:
space:
mode:
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)