From 6976be772330e77950d9a65f00fdc0fe74a75b76 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 28 Apr 2016 20:43:14 +1000 Subject: [PATCH] Python: install pyconfig.h on OSX, needed for PIP --- source/creator/CMakeLists.txt | 9 +++++++++ 1 file changed, 9 insertions(+) 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 -- 2.28.0