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:
authorPeter Schlaile <peter@schlaile.de>2007-10-02 16:36:53 +0400
committerPeter Schlaile <peter@schlaile.de>2007-10-02 16:36:53 +0400
commitdf4654932566855054741782ef7dfb0105c764df (patch)
treef44a1b912db102f66457f037034d5bf5ef2cb67a /source/blender/src/CMakeLists.txt
parent5359507859bd952eebafbbbe38330a85d9fdacd0 (diff)
== Sequencer ==
Added include compiler switches for windows to make pthread.h accessible and reverted Joshua's patch. (Joshua: the prefetch buffering has _nothing_ to do with FFMPEG!) If this still does not fix the problem, please send an email to me! I also fixed source\blender\src\sequence.c(1405) : error C2275: 'PrefetchThread' GCC is way to gracefully in latest versions... :)
Diffstat (limited to 'source/blender/src/CMakeLists.txt')
-rw-r--r--source/blender/src/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/src/CMakeLists.txt b/source/blender/src/CMakeLists.txt
index d4a0cbf7c3d..176ec036ada 100644
--- a/source/blender/src/CMakeLists.txt
+++ b/source/blender/src/CMakeLists.txt
@@ -63,6 +63,10 @@ IF(WITH_FFMPEG)
ADD_DEFINITIONS(-DWITH_FFMPEG)
ENDIF(WITH_FFMPEG)
+IF(WIN32)
+ SET(INC ${INC} ${PTHREADS_INC})
+ENDIF(WIN32)
+
IF(WITH_VERSE)
SET(INC ${INC} ${VERSE_INC})
ADD_DEFINITIONS(-DWITH_VERSE)