summaryrefslogtreecommitdiffstats
path: root/common/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'common/CMakeLists.txt')
-rw-r--r--common/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt
index dc9a670..c0cc7d9 100644
--- a/common/CMakeLists.txt
+++ b/common/CMakeLists.txt
@@ -16,8 +16,8 @@ set(command_SRCS
16 storage_common.cpp 16 storage_common.cpp
17 ${storage_SRCS}) 17 ${storage_SRCS})
18 18
19message("We have: ${storage_SRCS}") 19add_library(${PROJECT_NAME} SHARED ${command_SRCS})
20add_library(${PROJECT_NAME} ${command_SRCS}) 20generate_export_header(${PROJECT_NAME} BASE_NAME Akonadi2Common EXPORT_FILE_NAME akonadi2common_export.h)
21SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX) 21SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX)
22qt5_use_modules(${PROJECT_NAME} Widgets) 22qt5_use_modules(${PROJECT_NAME} Widgets)
23target_link_libraries(${PROJECT_NAME} ${storage_LIBS}) 23target_link_libraries(${PROJECT_NAME} ${storage_LIBS})