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

(-)a/qtinterface/CMakeLists.txt (-7 / +31 lines)
Lines 217-227 tde_add_library( tqt SHARED Link Here
217
217
218
##### tqassistantclient (shared) ##############################
218
##### tqassistantclient (shared) ##############################
219
219
220
if ( NOT HAVE_REAL_TQT )
220
221
221
tde_add_library( tqassistantclient SHARED
222
  find_library( QASSISTANTCLIENT_STATIC libqassistantclient.a )
222
  SOURCES
223
223
    ${IFACE}/tqassistantclient.cpp
224
  if ( QASSISTANTCLIENT_STATIC )
224
  VERSION 4.2.0
225
225
  LINK ${QT_LIBRARIES} -ltqassistantclient
226
    add_library(qassistantclient STATIC IMPORTED)
226
  DESTINATION ${LIB_INSTALL_DIR}
227
    set_property(TARGET qassistantclient PROPERTY
227
)
228
                 IMPORTED_LOCATION ${QASSISTANTCLIENT_STATIC})
229
230
    tde_add_library( tqassistantclient SHARED
231
      SOURCES
232
        ${IFACE}/tqassistantclient.cpp
233
      VERSION 4.2.0
234
      LINK ${QT_LIBRARIES}
235
      EMBED qassistantclient
236
      DESTINATION ${LIB_INSTALL_DIR}
237
    )
238
239
  else ( QASSISTANTCLIENT_STATIC )
240
241
    tde_add_library( tqassistantclient SHARED
242
      SOURCES
243
        ${IFACE}/tqassistantclient.cpp
244
      VERSION 4.2.0
245
      LINK ${QT_LIBRARIES} -lqassistantclient
246
      DESTINATION ${LIB_INSTALL_DIR}
247
    )
248
249
  endif ( QASSISTANTCLIENT_STATIC )
250
251
endif ( NOT HAVE_REAL_TQT )

Return to bug 1761