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:
authorCampbell Barton <ideasman42@gmail.com>2011-06-19 19:55:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-06-19 19:55:49 +0400
commitb1b8284f9bc85419701467d001e6310fbba09722 (patch)
tree1609d11785a19d85caaa404dbca6a630e6e13605
parentc6eaa2300a0d5490120feb357d340c6cce341f2a (diff)
fix for python include in msvc
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5c8236ad5d9..52773a40ce3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -685,7 +685,7 @@ elseif(WIN32)
if(WITH_PYTHON)
set(PYTHON_VERSION 3.2)
- set(PYTHON_INCLUDE_DIRS "${PYTHON}/include/python${PYTHON_VERSION}")
+ set(PYTHON_INCLUDE_DIRS "${LIBDIR}/python/include/python${PYTHON_VERSION}")
# set(PYTHON_BINARY python) # not used yet
set(PYTHON_LIBRARIES ${LIBDIR}/python/lib/python32.lib)
endif()