[Bf-blender-cvs] [d687625] master: Correct path to mingw64 libs so some minimal blender subset is possible to be compiled with older gcc

Sergey Sharybin noreply at git.blender.org
Tue Jan 27 15:30:19 CET 2015


Commit: d687625ad8df6ebcf14d6d28e46aa8b165628dc3
Author: Sergey Sharybin
Date:   Tue Jan 27 19:29:22 2015 +0500
Branches: master
https://developer.blender.org/rBd687625ad8df6ebcf14d6d28e46aa8b165628dc3

Correct path to mingw64 libs so some minimal blender subset is possible to be compiled with older gcc

===================================================================

M	CMakeLists.txt

===================================================================

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 843f430..c755666 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1515,7 +1515,7 @@ elseif(WIN32)
 			if (GCC_VERSION VERSION_GREATER 4.9 OR GCC_VERSION VERSION_EQUAL 4.9)
 				set(LIBDIR ${CMAKE_SOURCE_DIR}/../lib/mingw64_gcc49)
 			else()
-				set(LIBDIR ${CMAKE_SOURCE_DIR}/../lib/mingw)
+				set(LIBDIR ${CMAKE_SOURCE_DIR}/../lib/mingw64)
 			endif()
 		else()
 			message(STATUS "Compiling for 32 bit with MinGW-w32.")




More information about the Bf-blender-cvs mailing list