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:
authorJens Verwiebe <info@jensverwiebe.de>2013-02-05 22:24:26 +0400
committerJens Verwiebe <info@jensverwiebe.de>2013-02-05 22:24:26 +0400
commit7ef9e25384aaeff39810faa7d50d797bc47b6814 (patch)
tree97d8e35bcc44c5b32b7675bdf5df9a506a1ba7e3 /CMakeLists.txt
parent134c656878f63e597b250fa2a89eaf9196120d57 (diff)
OSX/cmake: Fix ypthn version for module compile
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ace3803e0d8..e948d0e76a8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1481,11 +1481,11 @@ elseif(APPLE)
# module must be compiled against Python framework
# normally cached but not since we include them with blender
- set(PYTHON_VERSION 3.2)
+ set(PYTHON_VERSION 3.3)
set(PYTHON_INCLUDE_DIR "/Library/Frameworks/Python.framework/Versions/${PYTHON_VERSION}/include/python${PYTHON_VERSION}m")
set(PYTHON_BINARY "/Library/Frameworks/Python.framework/Versions/${PYTHON_VERSION}/bin/python${PYTHON_VERSION}")
#set(PYTHON_LIBRARY python${PYTHON_VERSION})
- set(PYTHON_LIBPATH "/Library/Frameworks/Python.framework/Versions/${PYTHON_VERSION}/lib/python${PYTHON_VERSION}/config-3.2m")
+ set(PYTHON_LIBPATH "/Library/Frameworks/Python.framework/Versions/${PYTHON_VERSION}/lib/python${PYTHON_VERSION}/config-3.3m")
#set(PYTHON_LINKFLAGS "-u _PyMac_Error -framework Python") # won't build with this enabled
endif()