[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [36089] trunk/blender/CMakeLists.txt: Use the same LLIBS set for cmake at Win64 platform as scons uses.

Sergey Sharybin g.ulairi at gmail.com
Sun Apr 10 16:44:57 CEST 2011


Revision: 36089
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=36089
Author:   nazgul
Date:     2011-04-10 14:44:57 +0000 (Sun, 10 Apr 2011)
Log Message:
-----------
Use the same LLIBS set for cmake at Win64 platform as scons uses.

This fixes linking errors occurred recently for me (kinda of SDL
and registry stuff)

Now it works perfectly, thanks to Campbell for tip :)

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

Modified: trunk/blender/CMakeLists.txt
===================================================================
--- trunk/blender/CMakeLists.txt	2011-04-10 13:58:49 UTC (rev 36088)
+++ trunk/blender/CMakeLists.txt	2011-04-10 14:44:57 UTC (rev 36089)
@@ -543,7 +543,7 @@
 
 	if(MSVC)
 		if(CMAKE_CL_64)
-			set(LLIBS kernel32 user32 vfw32 winmm ws2_32 )
+			set(LLIBS ws2_32 vfw32 winmm kernel32 user32 gdi32 comdlg32 advapi32 shfolder shell32 ole32 oleaut32 uuid )
 		else()
 			set(LLIBS kernel32 user32 gdi32 comdlg32 advapi32 shell32 ole32 oleaut32 uuid ws2_32 vfw32 winmm)
 		endif()




More information about the Bf-blender-cvs mailing list