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:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-01-27 17:29:22 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-01-27 17:29:22 +0300
commitd687625ad8df6ebcf14d6d28e46aa8b165628dc3 (patch)
treeabb9f93841dc5b3aa877f32a374a57847b72d425 /CMakeLists.txt
parent58f7deca583aea1b5a1654965eb96b8441d8db98 (diff)
Correct path to mingw64 libs so some minimal blender subset is possible to be compiled with older gcc
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 843f43024b9..c755666d792 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.")