~phablet-team/history-service/trunk

« back to all changes in this revision

Viewing changes to tools/tplogger-import/CMakeLists.txt

Remove the tools and their dependencies: they are obsolete and not useful anymore. 
Approved by: PS Jenkins bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
set(tplogger_SRCS
2
 
    main.cpp
3
 
    telepathylogreader.cpp
4
 
    telepathylogimporter.cpp
5
 
    )
6
 
 
7
 
include_directories(
8
 
    ${TP_QT5_INCLUDE_DIRS}
9
 
    ${TPL_QT5_INCLUDE_DIRS}
10
 
    ${QTGLIB_INCLUDE_DIRS}
11
 
    ${CMAKE_SOURCE_DIR}/src
12
 
    )
13
 
 
14
 
add_executable(history-tplogger-import ${tplogger_SRCS})
15
 
qt5_use_modules(history-tplogger-import Core DBus)
16
 
 
17
 
target_link_libraries(history-tplogger-import
18
 
    ${TP_QT5_LIBRARIES}
19
 
    ${TPL_QT5_LIBRARIES}
20
 
    ${QTGLIB_LIBRARIES}
21
 
    historyservice
22
 
    )
23
 
 
24
 
install(TARGETS history-tplogger-import RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})