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

(-)kdebase-3.5.13.orig/kwin/clients/keramik/CMakeLists.txt (-14 / +3 lines)
Lines 42-63 Link Here
42
42
43
##### tiles.h (header) ##########################
43
##### tiles.h (header) ##########################
44
44
45
set( pics
45
file(GLOB _pics "${CMAKE_CURRENT_SOURCE_DIR}/pics/*.png" )
46
  pics/caption-large-left.png pics/caption-small-right.png
47
  pics/titlebar-center.png pics/titlebutton-square.png
48
  pics/border-left.png pics/caption-large-right.png
49
  pics/grabbar-center.png pics/titlebar-left.png
50
  pics/border-right.png pics/caption-small-center.png
51
  pics/grabbar-left.png pics/titlebar-right.png
52
  pics/caption-large-center.png pics/caption-small-left.png
53
  pics/grabbar-right.png pics/titlebutton-round.png
54
  pics/bottom-left.png pics/bottom-right.png pics/bottom-center.png
55
  pics/titlebutton-square-large.png pics/titlebutton-square-huge.png
56
  pics/titlebutton-round-large.png pics/titlebutton-round-huge.png )
57
46
58
add_custom_command( OUTPUT tiles.h
47
add_custom_command( OUTPUT tiles.h
59
  COMMAND ${CMAKE_CURRENT_BINARY_DIR}/embedtool ${pics}
48
  COMMAND ${CMAKE_CURRENT_BINARY_DIR}/embedtool ${_pics}
60
  DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/embedtool ${pics} )
49
  DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/embedtool ${_pics} )
61
50
62
tde_add_executable( embedtool
51
tde_add_executable( embedtool
63
  SOURCES embedtool.cpp
52
  SOURCES embedtool.cpp

Return to bug 905