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>2012-11-19 15:45:25 +0400
committerJens Verwiebe <info@jensverwiebe.de>2012-11-19 15:45:25 +0400
commit45f75df1ced1a48c0fe20f9cb0f20ba4a5f719b1 (patch)
tree7986d24aec6d5e2793ef422bb27f81d24fcb1352 /CMakeLists.txt
parent7ecbc39610d2c5827d770d155df9bb6c9740f25a (diff)
OSX/cmake: py 3.3 migration
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 634ada0eecc..34182556b4a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1364,13 +1364,13 @@ elseif(APPLE)
if(WITH_PYTHON)
if(NOT WITH_PYTHON_MODULE)
- # we use precompiled libraries for py 3.2 and up by default
+ # we use precompiled libraries for py 3.3 and up by default
# normally cached but not since we include them with blender
- set(PYTHON_VERSION 3.2)
- set(PYTHON_INCLUDE_DIR "${LIBDIR}/python/include/python${PYTHON_VERSION}")
+ set(PYTHON_VERSION 3.3)
+ set(PYTHON_INCLUDE_DIR "${LIBDIR}/python/include/python${PYTHON_VERSION}m")
# set(PYTHON_BINARY "${LIBDIR}/python/bin/python${PYTHON_VERSION}") # not used yet
- set(PYTHON_LIBRARY python${PYTHON_VERSION})
+ set(PYTHON_LIBRARY python${PYTHON_VERSION}m)
set(PYTHON_LIBPATH "${LIBDIR}/python/lib/python${PYTHON_VERSION}")
# set(PYTHON_LINKFLAGS "-u _PyMac_Error") # won't build with this enabled
else()