Build system copy release/site-packages for windows

This commit is contained in:
Campbell Barton
2014-03-05 04:12:21 +11:00
parent f53014d642
commit 2c4c4a56b8
2 changed files with 26 additions and 0 deletions

View File

@@ -643,6 +643,21 @@ def WinPyBundle(target=None, source=None, env=None):
print("Unpacking '" + py_tar + "' to '" + py_target + "'") print("Unpacking '" + py_tar + "' to '" + py_target + "'")
untar_pybundle(py_tar, py_target, exclude_re) untar_pybundle(py_tar, py_target, exclude_re)
# --------------------
# Copy 'site-packages'
py_dir = env.subst(env['LCGDIR'])
if py_dir[0] == '#':
py_dir = py_dir[1:]
py_dir += '/release/site-packages'
# grr, we have to do one by one because the dir exists
for f in os.listdir(py_dir):
fn_src = os.path.join(py_dir, f)
fn_dst = os.path.join(py_target, f)
shutil.rmtree(fn_dst, False, printexception)
shutil.copytree(fn_src, fn_dst)
def my_appit_print(target, source, env): def my_appit_print(target, source, env):
a = '%s' % (target[0]) a = '%s' % (target[0])

View File

@@ -586,6 +586,17 @@ elseif(WIN32)
) )
endif() endif()
# release/site-packages
install(
CODE
"
execute_process(COMMAND \"${CMAKE_COMMAND}\" -E copy_directory
${LIBDIR}/release/site-packages
\"${TARGETDIR_VER}/python/lib/site-packages\")
"
)
# doesnt work, todo # doesnt work, todo
# install(CODE "execute_process(COMMAND find ${TARGETDIR}/${BLENDER_VERSION}/python/lib/ -name '*.so' -exec strip -s {} '\;')") # install(CODE "execute_process(COMMAND find ${TARGETDIR}/${BLENDER_VERSION}/python/lib/ -name '*.so' -exec strip -s {} '\;')")
endif() endif()