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

(-)b/cmake/modules/TDEMacros.cmake (-11 / +20 lines)
Lines 684-699 Link Here
684
  endif( _version )
684
  endif( _version )
685
685
686
  # set interface libraries (only for shared)
686
  # set interface libraries (only for shared)
687
  unset( _shared_libs )
687
  if( NOT ${_type} STREQUAL "STATIC" )
688
  foreach( _lib ${_link} )
688
    unset( _shared_libs )
689
    #get_target_property( _lib_type ${_lib} TYPE )
689
    foreach( _lib ${_link} )
690
    #if( NOT "STATIC_LIBRARY" STREQUAL "${_lib_type}" )
690
      #get_target_property( _lib_type ${_lib} TYPE )
691
    if( NOT ${_lib} MATCHES ".+-static" )
691
      #if( NOT "STATIC_LIBRARY" STREQUAL "${_lib_type}" )
692
      list( APPEND _shared_libs ${_lib} )
692
      if( NOT ${_lib} MATCHES ".+-static" )
693
    endif( NOT ${_lib} MATCHES ".+-static" )
693
        list( APPEND _shared_libs ${_lib} )
694
    #endif( NOT "STATIC_LIBRARY" STREQUAL "${_lib_type}" )
694
      endif( NOT ${_lib} MATCHES ".+-static" )
695
  endforeach( _lib )
695
      #endif( NOT "STATIC_LIBRARY" STREQUAL "${_lib_type}" )
696
  target_link_libraries( ${_target} LINK_INTERFACE_LIBRARIES ${_shared_libs} )
696
    endforeach( _lib )
697
    set_target_properties( ${_target} PROPERTIES
698
                           LINK_INTERFACE_LIBRARIES "${_shared_libs}"
699
                           INTERFACE_LINK_LIBRARIES "${_shared_libs}" )
700
  endif( NOT ${_type} STREQUAL "STATIC" )
697
701
698
  # set embedded archives
702
  # set embedded archives
699
  if( _embed )
703
  if( _embed )
Lines 702-708 Link Here
702
706
703
  # set link libraries
707
  # set link libraries
704
  if( _link )
708
  if( _link )
705
    target_link_libraries( ${_target} ${_link} )
709
    if( _embed AND ${CMAKE_VERSION} VERSION_EQUAL "2.8.12.0" )
710
      # hack for broken CMake 2.8.12.0
711
      set_target_properties( ${_target} PROPERTIES LINK_LIBRARIES "${_link}" )
712
    else( _embed AND  ${CMAKE_VERSION} VERSION_EQUAL "2.8.12.0" )
713
      target_link_libraries( ${_target} ${_link} )
714
    endif( _embed AND  ${CMAKE_VERSION} VERSION_EQUAL "2.8.12.0" )
706
  endif( )
715
  endif( )
707
716
708
  # set dependencies
717
  # set dependencies

Return to bug 1759