From bfcdec62a28ae8e5d01158bb224f89239bd3aac6 Mon Sep 17 00:00:00 2001 From: NissimHadar Date: Mon, 22 Apr 2019 15:00:22 -0700 Subject: [PATCH] Before testing. --- hifi_vcpkg.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hifi_vcpkg.py b/hifi_vcpkg.py index a750129360..1fbbaa4028 100644 --- a/hifi_vcpkg.py +++ b/hifi_vcpkg.py @@ -241,5 +241,12 @@ endif() print("install Qt") if not os.path.isdir(os.path.join(self.path, 'installed', 'hifi-qt5')): dest = os.path.join(self.path, 'installed') - url = "https://hifi-qa.s3.amazonaws.com/hifi-qt5.tar.gz" + if platform.system() == 'Windows': + # url = "https://hifi-qa.s3.amazonaws.com/qt5/Windows/qt5-install.zip" + url = "https://hifi-qa.s3.amazonaws.com/qt5/Windows/hifi-qt5.tar.gz" + elif platform.system() == 'Darwin': + url = "https://hifi-qa.s3.amazonaws.com/qt5/Mac/qt5-install.zip" + elif platform.system() == 'Linux': + url = "https://hifi-qa.s3.amazonaws.com/qt5/Ubuntu/qt5-install.zip" + hifi_utils.downloadAndExtract(url, dest)