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 2109
Collapse All | Expand All

(-)tdecore/CMakeLists.txt.orig (-4 / +10 lines)
Lines 12-19 Link Here
12
add_subdirectory( malloc )
12
add_subdirectory( malloc )
13
add_subdirectory( network )
13
add_subdirectory( network )
14
add_subdirectory( tdeconfig_compiler )
14
add_subdirectory( tdeconfig_compiler )
15
add_subdirectory( tdehw )
16
15
16
if( WITH_TDEHWLIB )
17
  add_subdirectory( tdehw )
18
  set( TDEHW_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/tdehw )
19
  set( TDEHW_LIB tdehw-static )
20
  add_definitions( -DWITH_TDEHWLIB )
21
endif( WITH_TDEHWLIB )
22
17
if( WITH_LIBART )
23
if( WITH_LIBART )
18
  add_subdirectory( svgicons )
24
  add_subdirectory( svgicons )
19
  set( KDESVGICONS kdesvgicons-static )
25
  set( KDESVGICONS kdesvgicons-static )
Lines 25-31 Link Here
25
  ${CMAKE_BINARY_DIR}
31
  ${CMAKE_BINARY_DIR}
26
  ${CMAKE_CURRENT_SOURCE_DIR}
32
  ${CMAKE_CURRENT_SOURCE_DIR}
27
  ${CMAKE_CURRENT_SOURCE_DIR}/network
33
  ${CMAKE_CURRENT_SOURCE_DIR}/network
28
  ${CMAKE_CURRENT_SOURCE_DIR}/tdehw
34
  ${TDEHW_INCLUDE_DIR}
29
  ${CMAKE_SOURCE_DIR}/dcop
35
  ${CMAKE_SOURCE_DIR}/dcop
30
  ${CMAKE_SOURCE_DIR}/libltdl
36
  ${CMAKE_SOURCE_DIR}/libltdl
31
  ${CMAKE_SOURCE_DIR}/tdefx
37
  ${CMAKE_SOURCE_DIR}/tdefx
Lines 128-137 Link Here
128
tde_add_library( ${target} SHARED AUTOMOC
134
tde_add_library( ${target} SHARED AUTOMOC
129
  SOURCES ${${target}_SRCS}
135
  SOURCES ${${target}_SRCS}
130
  VERSION 14.0.0
136
  VERSION 14.0.0
131
  EMBED tdecorenetwork-static tdehw-static
137
  EMBED tdecorenetwork-static ${TDEHW_LIB}
132
  LINK ltdlc-static ${KDESVGICONS} DCOP-shared tdefx-shared ${ZLIB_LIBRARIES}
138
  LINK ltdlc-static ${KDESVGICONS} DCOP-shared tdefx-shared ${ZLIB_LIBRARIES}
133
    ${LIBIDN_LIBRARIES} ${XCOMPOSITE_LIBRARIES} ICE SM ${GAMIN_LIBRARIES}
139
    ${LIBIDN_LIBRARIES} ${XCOMPOSITE_LIBRARIES} ICE SM ${GAMIN_LIBRARIES}
134
    ${LIBBFD_LIBRARIES}
140
    ${LIBBFD_LIBRARIES} util
135
  DEPENDENCIES dcopidl dcopidl2cpp
141
  DEPENDENCIES dcopidl dcopidl2cpp
136
  DESTINATION ${LIB_INSTALL_DIR}
142
  DESTINATION ${LIB_INSTALL_DIR}
137
)
143
)

Return to bug 2109