summaryrefslogtreecommitdiffstats
path: root/konq-plugins/fsview/CMakeLists.txt
blob: d68adcf9be2a6ef304ec47b27ef3fe951b38bd95 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#################################################
#
#  (C) 2013 Alexander Golubev
#  fatzer2 (AT) gmail.com
#
#  Improvements and feedback are welcome
#
#  This file is released under GPL >= 2
#
#################################################

include_directories(
  ${CMAKE_BINARY_DIR}
  ${CMAKE_CURRENT_BINARY_DIR}
  ${CMAKE_CURRENT_SOURCE_DIR}
  ${TDE_INCLUDE_DIR}
  ${TQT_INCLUDE_DIRS}
)

link_directories(
  ${TQT_LIBRARY_DIRS}
)


##### fsview (static) ###########################

tde_add_library( fsview STATIC_PIC AUTOMOC
  SOURCES treemap.cpp fsview.cpp scan.cpp inode.cpp
  LINK tdeio-shared
)


##### fsview (executable) #######################

tde_add_executable( fsview AUTOMOC
  SOURCES main.cpp
  LINK tdeio-shared fsview-static
  DESTINATION ${BIN_INSTALL_DIR}
)


##### scantest (test) ###########################
# FIXME: replace this after adding specific tde macro
if( WITH_TEST )
  tde_add_executable( scantest
    SOURCES scantest.cpp
    LINK tdeio-shared fsview-static )

  set_property( SOURCE scantest.cpp APPEND
    PROPERTY COMPILE_DEFINITIONS
      FSVIEW_SCANTEST_DIRECTORY="${CMAKE_BINARY_DIR}" )

  add_test( scantest ${CMAKE_CURRENT_BINARY_DIR}/scantest )
endif( WITH_TEST )


##### libfsviewpart (kpart) #####################

tde_add_kpart( libfsviewpart AUTOMOC
  SOURCES fsview_part.cpp
  LINK tdeio-shared konq-shared fsview-static
  DESTINATION ${PLUGIN_INSTALL_DIR}
)


##### icons #####################################

tde_install_icons( fsview )


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

install( FILES fsview_part.rc
  DESTINATION ${DATA_INSTALL_DIR}/fsview
)

install( FILES fsview_part.desktop
  DESTINATION ${SERVICES_INSTALL_DIR}
)

install( FILES fsview.desktop
  DESTINATION ${APPS_INSTALL_DIR}/.hidden
)