Build system copy release/site-packages for windows
This commit is contained in:
@@ -643,6 +643,21 @@ def WinPyBundle(target=None, source=None, env=None):
|
||||
print("Unpacking '" + py_tar + "' to '" + py_target + "'")
|
||||
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):
|
||||
a = '%s' % (target[0])
|
||||
|
@@ -586,6 +586,17 @@ elseif(WIN32)
|
||||
)
|
||||
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
|
||||
# install(CODE "execute_process(COMMAND find ${TARGETDIR}/${BLENDER_VERSION}/python/lib/ -name '*.so' -exec strip -s {} '\;')")
|
||||
endif()
|
||||
|
Reference in New Issue
Block a user