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-26 23:50:08 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-11-26 23:50:08 +0400
commit5393922d1dd61720d3fc85fb04001749f366b765 (patch)
tree29d5e2aae013b9780f0b2c21fdf882fb86919313 /CMakeLists.txt
parent864c4112e9ac6891b58e94e563e2342ea1d895b8 (diff)
Remove non existent pthread include directory for MinGW, also slight message correction for 64 bit MinGW
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 48da0203318..cb42f081b2a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -872,7 +872,7 @@ elseif(WIN32)
# Setup 64bit and 64bit windows systems
if(WITH_MINGW64)
- message("Set 64 bit compiler for MinGW.")
+ message("Compiling for 64 bit with MinGW-w64.")
set(LIBDIR ${CMAKE_SOURCE_DIR}/../lib/mingw64)
endif()
else()
@@ -1220,7 +1220,7 @@ elseif(WIN32)
#comes with own pthread library
if(NOT WITH_MINGW64)
set(PTHREADS ${LIBDIR}/pthreads)
- set(PTHREADS_INCLUDE_DIRS ${PTHREADS}/include)
+ #set(PTHREADS_INCLUDE_DIRS ${PTHREADS}/include)
set(PTHREADS_LIBPATH ${PTHREADS}/lib)
set(PTHREADS_LIBRARIES pthreadGC2)
endif()