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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-10-05 15:13:15 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-10-05 15:13:15 +0400
commit3d65a8f0fa6b942de26a028b4ef6f2b21b72987f (patch)
tree72b3472e7445432db4ff7f487e70ef1a5cf653a4 /source/blender/freestyle/CMakeLists.txt
parent896a5fccef78bfbb60be8eae5ed552388ecdeb1b (diff)
Fixed CMake compilation on Windows in the same way as rev.23590.
Diffstat (limited to 'source/blender/freestyle/CMakeLists.txt')
-rw-r--r--source/blender/freestyle/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/freestyle/CMakeLists.txt b/source/blender/freestyle/CMakeLists.txt
index 74b0beca421..298af7a4803 100644
--- a/source/blender/freestyle/CMakeLists.txt
+++ b/source/blender/freestyle/CMakeLists.txt
@@ -34,4 +34,8 @@ SET(INC
${PNG_INC}
)
+IF(WIN32)
+ SET(INC ${INC} ${PTHREADS_INC})
+ENDIF(WIN32)
+
BLENDERLIB(bf_freestyle "${SRC}" "${INC}")