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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-04-20 19:46:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-20 19:46:28 +0400
commited4377faa76f67ee10fd7e374da0c6f5f120c0fe (patch)
tree79f4411ae6470d801820a8946b46dabdb9871cb9 /doc
parent716e9c5f47df26d658baadc2b23e7216903a2847 (diff)
replace referenecs to python 2.x
Diffstat (limited to 'doc')
-rw-r--r--doc/blender-cmake.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/blender-cmake.txt b/doc/blender-cmake.txt
index 05037a3ab2a..a49ff629b5b 100644
--- a/doc/blender-cmake.txt
+++ b/doc/blender-cmake.txt
@@ -132,9 +132,9 @@ $Id$
The commandline can be used to override detected/default settings, e.g:
On Unix:
- cmake -D PYTHON_LIB=/usr/local/lib/python2.3/config/libpython2.3.so -D PYTHON_INC=/usr/local/include/python2.3 -D PYTHON_BINARY=/usr/local/bin/python2.3 -G "Unix Makefiles" ../blender
+ cmake -D PYTHON_LIB=/usr/local/lib/python3.1/config/libpython3.1.so -D PYTHON_INC=/usr/local/include/python3.1 -G "Unix Makefiles" ../blender
On Macs:
- cmake -D PYTHON_INC=/System/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -D PYTHON_LIBPATH=/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/config -D PYTHON_BINARY=/System/Library/Frameworks/Python.framework/Versions/2.5/bin/python2.5 -G Xcode ../blender
+ cmake -D PYTHON_INC=/System/Library/Frameworks/Python.framework/Versions/3.1/include/python3.1 -G Xcode ../blender
Mote that this should only be needed once per build directory generation because it will keep the overrides in CMakeCache.txt for subsequent runs.