Make sure that we install all dlls into install directory on windows

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@438 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2011-10-11 08:08:00 +00:00
parent 7e6d675bcd
commit 1aeb663c66

View File

@@ -49,6 +49,15 @@ if (QT4_FOUND AND OPENGL_FOUND AND GLUT_FOUND )
add_dependencies (fixbundle DecimaterGui ProgViewer QtViewer SubdividerGui Synthesizer) add_dependencies (fixbundle DecimaterGui ProgViewer QtViewer SubdividerGui Synthesizer)
endif() endif()
# Make sure that we install all dlls into install directory on windows
if ( ${PROJECT_NAME} MATCHES "OpenMesh")
if ( WIN32 )
FILE(GLOB files_install_app_dlls "${CMAKE_BINARY_DIR}/Build/*.dll" )
INSTALL(FILES ${files_install_app_dlls} DESTINATION . )
endif()
endif()
else () else ()