SVN commit 809667 by staniek: fix: there are several shared libraries located in lib dir -instead they should be in bin dir (a requirement for Windows)
CCMAIL:[email protected] M +7 -0 CMakeLists.txt --- trunk/koffice/CMakeLists.txt #809666:809667 @@ -7,6 +7,13 @@ set(GENERIC_KOFFICE_LIB_VERSION "5.0.0") set(GENERIC_KOFFICE_LIB_SOVERSION "5") +if(WIN32) + set(LIB_INSTALL_DIR ${LIB_INSTALL_DIR} + RUNTIME DESTINATION ${BIN_INSTALL_DIR} + LIBRARY DESTINATION ${LIB_INSTALL_DIR} + ARCHIVE DESTINATION ${LIB_INSTALL_DIR} ) +endif(WIN32) + # search packages used by KDE find_package(KDE4 REQUIRED) include(KDE4Defaults) _______________________________________________ Kde-windows mailing list [email protected] https://mail.kde.org/mailman/listinfo/kde-windows
