4
0
mirror of https://github.com/QuasarApp/QuasarAppCI.git synced 2025-05-06 18:29:37 +00:00

Update qtUpdater.py

This commit is contained in:
Andrei Yankovich 2019-09-19 14:55:59 +03:00 committed by GitHub
parent 0ec57af39e
commit 6346e10021
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -88,7 +88,7 @@ def lsAndroid(props):
@util.renderer
def cpGCCWindows(props):
if not isWin(props):
if not isWin(props) or isConfigureonly(props):
return ['echo', " "]
resFiles = base.copyRegExp("/usr/lib/gcc/x86_64-w64-mingw32/7.3-win32/*.dll", LAST_TARGET_DIR[0] + "/bin/")
@ -96,7 +96,7 @@ def cpGCCWindows(props):
@util.renderer
def cpThreadWindows(props):
if not isWin(props):
if not isWin(props) or isConfigureonly(props):
return ['echo', " "]
resFiles = base.copyRegExp("/usr/x86_64-w64-mingw32/lib/*.dll", LAST_TARGET_DIR[0] + "/bin/")
@ -104,7 +104,7 @@ def cpThreadWindows(props):
@util.renderer
def cpIcuLinux(props):
if not isLinux(props):
if not isLinux(props) or isConfigureonly(props):
return ['echo', " "]
resFiles = base.copyRegExp("/usr/lib/x86_64-linux-gnu/libicu*", LAST_TARGET_DIR[0] + "/lib/")