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-03-09 01:11:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-09 01:11:15 +0300
commit65273cf82ff165e056042dada073ee9b905bed4a (patch)
treeeebb405da6e81e3778d3eb22265ccd3fa17d3668 /CMakeLists.txt
parent94b5fd6eb94e69e25d8f6c193096014abeb93e0e (diff)
- correct python3.1 warning message.
- for new shadow only enum, use humanly readable RNA enum values. - update cmake unix example for custom python.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt12
1 files changed, 10 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fbe55969978..4a7985cf721 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -200,9 +200,17 @@ set(CXX_WARNINGS "")
# For alternate Python locations the commandline can be used to override detected/default cache settings, e.g:
# On Unix:
-# cmake -D PYTHON_LIBRARY=/usr/local/lib/python3.2/config/libpython3.2.so -D PYTHON_INCLUDE_DIRS=/usr/local/include/python3.2 ../blender
+# cmake ../blender \
+# -D PYTHON_VERSION=3.2 \
+# -D PYTHON_INCLUDE_DIRS=/opt/py32/include/python3.2d \
+# -D PYTHON_LIBPATH=/opt/py32/lib \
+# -D PYTHON_LIBRARY=python3.2d
+#
# On Macs:
-# cmake -D PYTHON_INCLUDE_DIRS=/System/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2 -D PYTHON_LIBPATH=/System/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/config -G Xcode ../blender
+# cmake ../blender \
+# -D PYTHON_INCLUDE_DIRS=/System/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2 \
+# -D PYTHON_LIBPATH=/System/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/config \
+# -G Xcode
#
# When changing any of this remember to update the notes in doc/build_systems/cmake.txt