debug linux copying libs

This commit is contained in:
2024-07-17 15:12:28 -06:00
parent 010191dffe
commit 2ac950be91

View File

@@ -446,11 +446,13 @@ def handle_bundled_libs(extension):
for lpath in env['LIBPATH']:
src_file = path.join(lpath, lib + extension)
if path.exists(src_file):
print(src_file)
for targ in target_dirs:
env.Install(targ, src_file)
break
elif 'lib' in lpath:
src_file = path.join(lpath.replace('lib', 'bin'), lib + extension)
print(src_file)
if path.exists(src_file):
for targ in target_dirs:
env.Install(targ, src_file)