By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1923
Collapse All | Expand All

(-)CMakeLists.txt.orig (-2 / +19 lines)
Lines 25-31 Link Here
25
25
26
##### other data ################################
26
##### other data ################################
27
27
28
install( FILES trash.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
28
install( FILES ktrashpropsdlgplugin.desktop trash.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
29
29
30
30
31
##### trashcommon (static) ######################
31
##### trashcommon (static) ######################
Lines 33-39 Link Here
33
set( target trashcommon )
33
set( target trashcommon )
34
34
35
tde_add_library( ${target} STATIC_PIC AUTOMOC
35
tde_add_library( ${target} STATIC_PIC AUTOMOC
36
  SOURCES trashimpl.cpp
36
  SOURCES trashimpl.cpp discspaceutil.cpp 
37
)
37
)
38
38
39
39
Lines 47-52 Link Here
47
  DESTINATION ${PLUGIN_INSTALL_DIR}
47
  DESTINATION ${PLUGIN_INSTALL_DIR}
48
)
48
)
49
49
50
##### ktrashpropsdlgplugin (module) ########################
51
52
set( target ktrashpropsdlgplugin )
53
54
tde_add_kpart( ${target} AUTOMOC
55
  SOURCES ktrashpropsdlgplugin.cpp discspaceutil.cpp trashimpl.cpp
56
  LINK tdeio-shared
57
  DESTINATION ${PLUGIN_INSTALL_DIR}
58
)
59
60
50
61
51
##### ktrash (executable) #######################
62
##### ktrash (executable) #######################
52
63
Lines 57-59 Link Here
57
  LINK tdeio-shared
68
  LINK tdeio-shared
58
  DESTINATION ${BIN_INSTALL_DIR}
69
  DESTINATION ${BIN_INSTALL_DIR}
59
)
70
)
71
72
##### testtrash (executable) #######################
73
tde_add_executable( testtrash
74
  SOURCES testtrash.cpp AUTOMOC
75
  LINK trashcommon-static tdeio-shared
76
)

Return to bug 1923