Fetch static archive in the root dir

This commit is contained in:
lazymio 2022-05-03 11:11:29 +02:00
parent 42e52cd4c7
commit 8fec2f6992
No known key found for this signature in database
GPG Key ID: DFF27E34A47CB873

View File

@ -124,7 +124,7 @@ def build_libraries():
obj_dir = os.path.join(BUILD_DIR, conf)
shutil.copy(os.path.join(obj_dir, LIBRARY_FILE), LIBS_DIR)
shutil.copy(os.path.join(obj_dir, STATIC_LIBRARY_FILE), LIBS_DIR)
shutil.copy(os.path.join(BUILD_DIR, STATIC_LIBRARY_FILE), LIBS_DIR)
else:
# platform description refs at https://docs.python.org/2/library/sys.html#sys.platform
if not os.path.exists(BUILD_DIR):