From: Campbell Barton Date: Thu, 28 Apr 2016 10:43:14 +0000 (+1000) Subject: Python: install pyconfig.h on OSX, needed for PIP X-Git-Tag: v2.78-rc1~1559 X-Git-Url: https://git.blender.org/gitweb/gitweb.cgi/blender.git/commitdiff_plain/6976be772330e77950d9a65f00fdc0fe74a75b76 Python: install pyconfig.h on OSX, needed for PIP --- diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index 273e5b33d0d..b7d8381639d 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -996,6 +996,15 @@ elseif(APPLE) DESTINATION ${TARGETDIR_VER}/python USE_SOURCE_PERMISSIONS ) + + # Needed for distutils/pip + # get the last part of the include dir, will be 'python{version}{abiflag}', + get_filename_component(_py_inc_suffix ${PYTHON_INCLUDE_DIR} NAME) + install( + FILES ${PYTHON_INCLUDE_DIR}/pyconfig.h + DESTINATION ${TARGETDIR_VER}/python/include/${_py_inc_suffix} + ) + unset(_py_inc_suffix) endif() # install blenderplayer bundle - copy of blender.app above. re-using macros et al