diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-06-19 12:27:38 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-06-19 12:27:38 +0200 |
commit | b289dd9bf618a2512cbf15b2a6fc4ae77e4792c8 (patch) | |
tree | f303b59e64026e841308d654c60aa8d1475e07ff /common/CMakeLists.txt | |
parent | 207effdd7112141ad4fc5cdd46f332870a0c065c (diff) | |
download | sink-b289dd9bf618a2512cbf15b2a6fc4ae77e4792c8.tar.gz sink-b289dd9bf618a2512cbf15b2a6fc4ae77e4792c8.zip |
Moved mailpreprocessors to a shared location
Diffstat (limited to 'common/CMakeLists.txt')
-rw-r--r-- | common/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index 752e4e4..3083a2e 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt | |||
@@ -73,6 +73,7 @@ set(command_SRCS | |||
73 | remoteidmap.cpp | 73 | remoteidmap.cpp |
74 | sourcewriteback.cpp | 74 | sourcewriteback.cpp |
75 | entityreader.cpp | 75 | entityreader.cpp |
76 | mailpreprocessor.cpp | ||
76 | ${storage_SRCS}) | 77 | ${storage_SRCS}) |
77 | 78 | ||
78 | add_library(${PROJECT_NAME} SHARED ${command_SRCS}) | 79 | add_library(${PROJECT_NAME} SHARED ${command_SRCS}) |
@@ -108,7 +109,7 @@ SET_TARGET_PROPERTIES(${PROJECT_NAME} | |||
108 | EXPORT_NAME ${PROJECT_NAME} | 109 | EXPORT_NAME ${PROJECT_NAME} |
109 | ) | 110 | ) |
110 | qt5_use_modules(${PROJECT_NAME} Network) | 111 | qt5_use_modules(${PROJECT_NAME} Network) |
111 | target_link_libraries(${PROJECT_NAME} ${storage_LIBS} KF5::Async) | 112 | target_link_libraries(${PROJECT_NAME} ${storage_LIBS} KF5::Async KF5::Mime) |
112 | install(TARGETS ${PROJECT_NAME} | 113 | install(TARGETS ${PROJECT_NAME} |
113 | EXPORT SinkTargets ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} ${LIBRARY_NAMELINK} ) | 114 | EXPORT SinkTargets ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} ${LIBRARY_NAMELINK} ) |
114 | 115 | ||