From 3030e2d1cb1aaec554a409e44170b890d073c661 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 24 Mar 2015 19:09:51 +1100 Subject: CMake: tweak recent py module changes support installing portable builds to CMAKE_INSTALL_PREFIX --- source/creator/CMakeLists.txt | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) (limited to 'source/creator') diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index b9044e64ddd..193737e9822 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -262,7 +262,11 @@ endif() if(UNIX AND NOT APPLE) if(WITH_PYTHON_MODULE) - set(TARGETDIR_VER ${PYTHON_SITE_PACKAGES}/${BLENDER_VERSION}) + if(WITH_INSTALL_PORTABLE) + set(TARGETDIR_VER ${BLENDER_VERSION}) + else() + set(TARGETDIR_VER ${PYTHON_SITE_PACKAGES}/${BLENDER_VERSION}) + endif() else() if(WITH_INSTALL_PORTABLE) set(TARGETDIR_VER ${BLENDER_VERSION}) @@ -408,10 +412,17 @@ if(UNIX AND NOT APPLE) # there are a few differences between portable and system install if(WITH_PYTHON_MODULE) - install( - TARGETS blender - LIBRARY DESTINATION ${PYTHON_SITE_PACKAGES} - ) + if(WITH_INSTALL_PORTABLE) + install( + TARGETS blender + DESTINATION "." + ) + else() + install( + TARGETS blender + LIBRARY DESTINATION ${PYTHON_SITE_PACKAGES} + ) + endif() # none of the other files are needed currently elseif(WITH_INSTALL_PORTABLE) install( -- cgit v1.2.3