diff options
Diffstat (limited to 'common/CMakeLists.txt')
-rw-r--r-- | common/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index d200635..fab7708 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt | |||
@@ -13,12 +13,16 @@ endif (STORAGE_unqlite) | |||
13 | set(command_SRCS | 13 | set(command_SRCS |
14 | commands.cpp | 14 | commands.cpp |
15 | console.cpp | 15 | console.cpp |
16 | resourceaccess.cpp | ||
16 | storage_common.cpp | 17 | storage_common.cpp |
18 | threadboundary.cpp | ||
17 | ${storage_SRCS}) | 19 | ${storage_SRCS}) |
18 | 20 | ||
19 | add_library(${PROJECT_NAME} SHARED ${command_SRCS}) | 21 | add_library(${PROJECT_NAME} SHARED ${command_SRCS}) |
20 | generate_export_header(${PROJECT_NAME} BASE_NAME Akonadi2Common EXPORT_FILE_NAME akonadi2common_export.h) | 22 | generate_export_header(${PROJECT_NAME} BASE_NAME Akonadi2Common EXPORT_FILE_NAME akonadi2common_export.h) |
21 | SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX) | 23 | SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX) |
22 | qt5_use_modules(${PROJECT_NAME} Widgets) | 24 | qt5_use_modules(${PROJECT_NAME} Widgets Network) |
23 | target_link_libraries(${PROJECT_NAME} ${storage_LIBS}) | 25 | target_link_libraries(${PROJECT_NAME} ${storage_LIBS}) |
24 | install(TARGETS ${PROJECT_NAME} DESTINATION lib) | 26 | install(TARGETS ${PROJECT_NAME} DESTINATION lib) |
27 | |||
28 | add_subdirectory(test) | ||