This commit is contained in:
Oleg Korshul
2019-12-05 16:54:30 +03:00
parent 6a8ac306f3
commit d1498c532d
5 changed files with 86 additions and 56 deletions

View File

@ -121,6 +121,10 @@ def copy_lib(src, dst, name):
lib_dst = dst + "/"
if not ("windows" == host_platform()):
lib_dst += "lib"
if not is_file(file_src + lib_ext) and is_dir(src + "/" + name + ".framework"):
copy_dir(src + "/" + name + ".framework", dst + "/" + name + ".framework")
copy_file(file_src + lib_ext, lib_dst + name + lib_ext)
return