From aa85a0bde92e38edb69673d89cc519684646993c Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Sat, 25 Feb 2023 11:16:11 +0200 Subject: [PATCH] Fixing PowerShell script. --- appveyor.yml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 3dd344a8a..64ba8c1ff 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -357,31 +357,31 @@ for: & qbs-setup-toolchains.exe --type msvc $env:MSVC_PATH\cl.exe $env:COMPILER & qbs-config.exe profiles.qt6.baseProfile $env:COMPILER $profile = @" - [settings] - build_type=Release - compiler=msvc - compiler.cppstd=17 - compiler.runtime=dynamic - compiler.runtime_type=Release - compiler.version=192 - os=Windows - $arch - "@ + [settings] + build_type=Release + compiler=msvc + compiler.cppstd=17 + compiler.runtime=dynamic + compiler.runtime_type=Release + compiler.version=192 + os=Windows + $arch + "@ } else { & qbs-setup-toolchains.exe --type mingw $env:MINGW_PATH\g++.exe $env:COMPILER & qbs-config.exe profiles.qt6.baseProfile $env:COMPILER $profile = @" - [settings] - build_type=Release - compiler=gcc - compiler.cppstd=gnu17 - compiler.libcxx=libstdc++11 - compiler.version=$env:GCC_VERSION - os=Windows - $arch - "@ + [settings] + build_type=Release + compiler=gcc + compiler.cppstd=gnu17 + compiler.libcxx=libstdc++11 + compiler.version=$env:GCC_VERSION + os=Windows + $arch + "@ } $profile | Out-File -FilePath "$env:HOMEPATH\.conan2\profiles\valentina" - qbs-config --list profiles