Skip to content
Snippets Groups Projects
Commit b747b3d8 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

build(windows): fix deploy script

Change-Id: I4d7f04365c9753d383a28abd4ec68ce62e80ebff
parent 4fd0c334
No related branches found
No related tags found
No related merge requests found
......@@ -17,13 +17,13 @@ If (test-path $stampFile) {
}
}
if (!$outDir) { $outDir = $clientDir + "\x64\" + $mode }
If (!(test-path $outDir)) { New-Item -ItemType directory -Path $outDir -Force }
# default values
$qtver = If ($qtver) { $qtver } Else { "5.15.0" }
$mode = If ($mode) { $mode } Else { "Release" }
if (!$outDir) { $outDir = $clientDir + "\x64\" + $mode }
If (!(test-path $outDir)) { New-Item -ItemType directory -Path $outDir -Force }
$qtverSplit1, $qtverSplit2 , $qtverSplit3 = $qtver.Split('.')
$qtMsvcDir = "msvc2019_64"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment