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:
authorAntony Riakiotakis <kalast@gmail.com>2012-11-12 02:50:28 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-11-12 02:50:28 +0400
commit929e88fd9577b5d8735cd24293340acd8997baec (patch)
treefb024d3394619211a7c3e494af0b0b6ba6d80d4b /CMakeLists.txt
parentfbc1cc712f281e1cf61f40d70f09f8479506e018 (diff)
Fix CMake boost locale lib names for MinGW64.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d5c1b5c287f..9082161c691 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1297,9 +1297,9 @@ elseif(WIN32)
boost_system-${BOOST_DEBUG_POSTFIX} boost_thread-${BOOST_DEBUG_POSTFIX})
if(WITH_INTERNATIONAL)
set(BOOST_LIBRARIES ${BOOST_LIBRARIES}
- optimized libboost_locale-${BOOST_POSTFIX}
- debug libboost_locale-${BOOST_DEBUG_POSTFIX})
- endif(WITH_CYCLES_OSL)
+ optimized boost_locale-${BOOST_POSTFIX}
+ debug boost_locale-${BOOST_DEBUG_POSTFIX})
+ endif()
set(BOOST_LIBPATH ${BOOST}/lib)
set(BOOST_DEFINITIONS "-DBOOST_ALL_NO_LIB -DBOOST_THREAD_USE_LIB ")
endif()