Refactoring win_arm64 build

This commit is contained in:
Oleg Korshul
2025-08-20 17:53:19 +03:00
parent 4e6b45043a
commit 83374aa635
6 changed files with 28 additions and 23 deletions

View File

@ -4,7 +4,6 @@ sys.path.append('../../../scripts')
import base
def make():
qt_build_path = os.path.dirname(os.path.abspath(__file__)) + "/qt_build/Qt-5.15.2"
qt_binary_url = "https://github.com/ONLYOFFICE-data/build_tools_data/raw/refs/heads/master/qt/qt_binary_win_arm64.7z"
@ -14,7 +13,8 @@ def make():
if not base.is_dir(qt_build_path):
os.makedirs(qt_build_path)
base.cmd("tar", ["-xf", "./qt_binary_win_arm64.7z", "-C", qt_build_path])
base.extract("./qt_binary_win_arm64.7z", qt_build_path)
if __name__ == "__main__":
base.configure_common_apps()
make()