summaryrefslogtreecommitdiffstats
path: root/kmobile/CMakeLists.txt
blob: 1c5cf0c073f9bb4cbf89c0f1c57501b825f4391b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#################################################
#
#  (C) 2010-2011 Serghei Amelian
#  serghei (DOT) amelian (AT) gmail.com
#
#  Improvements and feedback are welcome
#
#  This file is released under GPL >= 2
#
#################################################

tde_import( libkmime )
tde_import( ktnef )
tde_import( libkcal )

add_subdirectory( devices )

include_directories(
  ${CMAKE_CURRENT_BINARY_DIR}
  ${CMAKE_SOURCE_DIR}
  ${CMAKE_SOURCE_DIR}/libtdepim
  ${TDE_INCLUDE_DIR}
  ${TQT_INCLUDE_DIRS}
)

link_directories(
  ${TQT_LIBRARY_DIRS}
)


##### other data ################################

tde_install_icons( kmobile )
install( FILES kmobile.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
install( FILES libkmobile.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR} )
install( FILES kmobileui.rc DESTINATION ${DATA_INSTALL_DIR}/kmobile )


##### kmobile (executable) ######################

tde_add_executable( kmobile AUTOMOC
  SOURCES
    main.cpp kmobile.cpp kmobileview.cpp kmobileitem.cpp pref.cpp
    kmobileiface.skel kmobile_selectiondialog.ui systemtray.cpp
  LINK kmobiledevice-shared
  DESTINATION ${BIN_INSTALL_DIR}
)


##### kmobiledevice (shared) ####################

tde_add_library( kmobiledevice SHARED AUTOMOC
  SOURCES kmobiledevice.cpp
  LINK kcal-shared
  DESTINATION ${LIB_INSTALL_DIR}
)


##### kmobileclient (shared) ####################

tde_add_library( kmobileclient SHARED AUTOMOC
  SOURCES kmobileclient.cpp
  LINK tdecore-shared
  DESTINATION ${LIB_INSTALL_DIR}
)