[Bf-blender-cvs] [8ac21cb40a6] master: fix:wrong python pdb copied for Windows-VS when building for pydebug

Gaia Clary noreply at git.blender.org
Fri Sep 27 22:59:32 CEST 2019


Commit: 8ac21cb40a668ddd78e6ebead904c819296b824e
Author: Gaia Clary
Date:   Fri Sep 27 22:59:08 2019 +0200
Branches: master
https://developer.blender.org/rB8ac21cb40a668ddd78e6ebead904c819296b824e

fix:wrong python pdb copied for Windows-VS when building for pydebug

===================================================================

M	source/creator/CMakeLists.txt

===================================================================

diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 85b6f24a269..8fb4d2905f4 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -748,13 +748,13 @@ elseif(WIN32)
 
       if(WINDOWS_PYTHON_DEBUG)
         install(
-          FILES ${LIBDIR}/python/lib/python${_PYTHON_VERSION_NO_DOTS}.pdb
+          FILES ${LIBDIR}/python/37/libs/python${_PYTHON_VERSION_NO_DOTS}.pdb
           DESTINATION "."
           CONFIGURATIONS Release;RelWithDebInfo;MinSizeRel
         )
 
         install(
-          FILES ${LIBDIR}/python/lib/python${_PYTHON_VERSION_NO_DOTS}_d.pdb
+          FILES ${LIBDIR}/python/37/libs/python${_PYTHON_VERSION_NO_DOTS}_d.pdb
           DESTINATION "."
           CONFIGURATIONS Debug
         )



More information about the Bf-blender-cvs mailing list