ref #581 "remove quotes from the envirement path (cqtDir and cqtdeployer) windows only"

This commit is contained in:
Andrei Yankovich 2021-05-03 17:07:05 +03:00
parent 7fda866df7
commit caea0406ad
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ QT_DIR= $$[QT_HOST_BINS]
win32:QMAKE_BIN= $$QT_DIR/qmake.exe
win32:LUPDATE = $$QT_DIR/lupdate.exe
win32:LRELEASE = $$QT_DIR/lrelease.exe
win32:DEPLOYER=$$(cqtdeployer)
win32:DEPLOYER="$$(cqtdeployer)"
contains(QMAKE_HOST.os, Linux):{

View File

@ -92,14 +92,14 @@ function systemIntegration() {
component.addOperation('EnvironmentVariable',
[
"cqtdeployer",
"\"" + targetDir + "\\" + VERSION + "\\cqtdeployer.bat\""
targetDir + "\\" + VERSION + "\\cqtdeployer.bat"
]
)
component.addOperation('EnvironmentVariable',
[
"cqtDir",
"\"" + targetDir + "\\" + VERSION + "\\\""
targetDir + "\\" + VERSION + "\\"
]
)