Fetch static archive in the root dir

This commit is contained in:
2022-05-03 11:11:29 +02:00
parent 42e52cd4c7
commit 8fec2f6992

View File

@@ -124,7 +124,7 @@ def build_libraries():
obj_dir = os.path.join(BUILD_DIR, conf) 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, 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: else:
# platform description refs at https://docs.python.org/2/library/sys.html#sys.platform # platform description refs at https://docs.python.org/2/library/sys.html#sys.platform
if not os.path.exists(BUILD_DIR): if not os.path.exists(BUILD_DIR):