Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2016-01-05 15:35:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-05 15:35:14 +0300
commitad6b7c07dd2a3240945e2d4fe739c4622c75e980 (patch)
treeac2fb8fc55e1f0f0ebeaf9f6f35a70ce98f24b63 /CMakeLists.txt
parentc42ae8be6056119c9b899dd40cbcb3ed1f28c35a (diff)
CMake: remove mingw64_gcc49
Not supported or in working state.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt7
1 files changed, 1 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a4206c30a63..193ac487228 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1619,12 +1619,7 @@ elseif(WIN32)
if(WITH_MINGW64)
message(STATUS "Compiling for 64 bit with MinGW-w64.")
- execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpversion OUTPUT_VARIABLE GCC_VERSION)
- 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/mingw64)
- endif()
+ set(LIBDIR ${CMAKE_SOURCE_DIR}/../lib/mingw64)
else()
message(STATUS "Compiling for 32 bit with MinGW-w32.")
set(LIBDIR ${CMAKE_SOURCE_DIR}/../lib/mingw32)