[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [40848] trunk/blender/source/creator/ CMakeLists.txt: Patch [#28660] x64 thumbnail handler not being installed in CMake builds by Tom Edwards.

Thomas Dinges blender at dingto.org
Fri Oct 7 20:25:55 CEST 2011


Revision: 40848
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=40848
Author:   dingto
Date:     2011-10-07 18:25:54 +0000 (Fri, 07 Oct 2011)
Log Message:
-----------
Patch [#28660] x64 thumbnail handler not being installed in CMake builds by Tom Edwards. 

Modified Paths:
--------------
    trunk/blender/source/creator/CMakeLists.txt

Modified: trunk/blender/source/creator/CMakeLists.txt
===================================================================
--- trunk/blender/source/creator/CMakeLists.txt	2011-10-07 08:57:08 UTC (rev 40847)
+++ trunk/blender/source/creator/CMakeLists.txt	2011-10-07 18:25:54 UTC (rev 40848)
@@ -582,12 +582,12 @@
 			FILES ${LIBDIR}/thumbhandler/lib/BlendThumb.dll
 			DESTINATION ${TARGETDIR}
 		)
-	else()
-		install(
-			FILES ${LIBDIR}/thumbhandler/lib/BlendThumb64.dll
-			DESTINATION ${TARGETDIR}
-		)
 	endif()
+		
+	install( # x86 builds can run on x64 Windows, so this is required at all times
+		FILES ${LIBDIR}/thumbhandler/lib/BlendThumb64.dll
+		DESTINATION ${TARGETDIR}
+	)	
 
 elseif(APPLE)
 	set(SOURCEDIR ${CMAKE_SOURCE_DIR}/source/darwin/blender.app)




More information about the Bf-blender-cvs mailing list