This is a multi-part message in MIME format. --------------090502060709060603090002 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, I have attached a patch to fix the compilation process of the digital clock example (on my system the build failed with the current version - complaining about a missing target). - Philip --------------090502060709060603090002 Content-Type: text/plain; name="ruby-plasma-examples-compile-fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ruby-plasma-examples-compile-fix.patch" Index: ruby/plasma/examples/applets/digital-clock/CMakeLists.txt =================================================================== --- ruby/plasma/examples/applets/digital-clock/CMakeLists.txt (revision 832004) +++ ruby/plasma/examples/applets/digital-clock/CMakeLists.txt (working copy) @@ -5,7 +5,7 @@ FIND_PROGRAM(RBUIC4 rbuic4 PATHS ${BIN_INSTALL_DIR}) if(RBUIC4) ADD_CUSTOM_COMMAND(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/digital_clock_config.rb COMMAND ${RBUIC4} ${UI_CLOCKCONFIG} -o ${CMAKE_CURRENT_BINARY_DIR}/digital_clock_config.rb COMMENT "Generating digital_clock_config.rb") - ADD_CUSTOM_TARGET(digital_clock_config.rb ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/digital_clock_config.rb) + ADD_CUSTOM_TARGET(digital_clock_config ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/digital_clock_config.rb) ADD_CUSTOM_COMMAND(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/calendar.rb COMMAND ${RBUIC4} ${UI_CALENDAR} -o ${CMAKE_CURRENT_BINARY_DIR}/calendar.rb COMMENT "Generating calendar.rb") ADD_CUSTOM_TARGET(calendar ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/calendar.rb) --------------090502060709060603090002 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Kde-bindings mailing list Kde-bindings@kde.org https://mail.kde.org/mailman/listinfo/kde-bindings --------------090502060709060603090002--