1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-09-04 14:13:28 +02:00

build(windows): fix deploy script

Change-Id: I4d7f04365c9753d383a28abd4ec68ce62e80ebff
This commit is contained in:
Andreas Traczyk 2020-10-02 16:44:04 -04:00
parent 4fd0c33450
commit b747b3d8e9

View file

@ -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"