mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 02:12:53 +02:00
Before testing.
This commit is contained in:
parent
0da6e088cb
commit
bfcdec62a2
1 changed files with 8 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue