[Kde-bindings] KDE/kdebindings/ruby/qtruby
Richard Dale
Richard_Dale at tipitina.demon.co.uk
Fri Mar 20 19:20:08 UTC 2009
SVN commit 941951 by rdale:
* Remove 'LIBRARY' from this line in qtruby/src/CMakeLists.txt:
install(TARGETS qtruby4shared
LIBRARY DESTINATION
${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX} )
It was causing problems with a configuration error when building QtRuby
on Windows. Thanks to David Palacio for reporting the problem
CCMAIL: kde-bindings at kde.org
CCMAIL: kde-windows at kde.org
M +10 -0 ChangeLog
M +1 -1 src/CMakeLists.txt
--- trunk/KDE/kdebindings/ruby/qtruby/ChangeLog #941950:941951
@@ -1,3 +1,13 @@
+2009-03-20 Richard Dale <richard.j.dale at gmail.com>
+ * Remove 'LIBRARY' from this line in qtruby/src/CMakeLists.txt:
+
+ install(TARGETS qtruby4shared
+ LIBRARY DESTINATION
+ ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX} )
+
+ It was causing problems with a configuration error when building QtRuby
+ on Windows. Thanks to David Palacio for reporting the problem
+
2009-03-19 Richard Dale <richard.j.dale at gmail.com>
* The rbqtap was calling 'each' on a string which no longer works in Ruby
1.9.1 as they aren't Enumerable. So use split instead so that the code
--- trunk/KDE/kdebindings/ruby/qtruby/src/CMakeLists.txt #941950:941951
@@ -38,7 +38,7 @@
set_target_properties(qtruby4 PROPERTIES PREFIX "")
set_target_properties(qtruby4shared PROPERTIES VERSION 2.0.0 SOVERSION 2)
-install(TARGETS qtruby4shared LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX} )
+install(TARGETS qtruby4shared DESTINATION ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX} )
install(TARGETS qtruby4 DESTINATION ${CUSTOM_RUBY_SITE_ARCH_DIR})
install(FILES qtruby.h marshall.h marshall_basetypes.h marshall_complex.h marshall_macros.h marshall_primitives.h marshall_types.h smokeruby.h DESTINATION ${CMAKE_INSTALL_PREFIX}/include/qtruby)
More information about the Kde-bindings
mailing list