mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-21 04:16:39 +08:00
* Update libjpeg-turbo to 2.0.5
* Replace MinGW 7 packages with MinGW 8
* Remove zlib packages as Qt is consistently built with -qt-zlib now
Task-bumber: QTQAINFRA-3916
Change-Id: Ie15bbb0f0f5b3a4c1a5d08f2341e9eb16a80cce7
Reviewed-by: Konstantin Tokarev <annulen@yandex.ru>
(cherry picked from commit 27d187eb32)
Reviewed-by: Heikki Halmet <heikki.halmet@qt.io>
54 lines
1.3 KiB
PowerShell
54 lines
1.3 KiB
PowerShell
. "$PSScriptRoot\..\common\windows\conan.ps1"
|
|
|
|
Run-Conan-Install `
|
|
-ConanfilesDir "$PSScriptRoot\conanfiles" `
|
|
-BuildinfoDir MSVC2015-x86_64 `
|
|
-Arch x86_64 `
|
|
-Compiler "Visual Studio" `
|
|
-CompilerVersion 14 `
|
|
-CompilerRuntime MD
|
|
|
|
Run-Conan-Install `
|
|
-ConanfilesDir "$PSScriptRoot\conanfiles" `
|
|
-BuildinfoDir MSVC2015-x86 `
|
|
-Arch x86 `
|
|
-Compiler "Visual Studio" `
|
|
-CompilerVersion 14 `
|
|
-CompilerRuntime MD
|
|
|
|
Run-Conan-Install `
|
|
-ConanfilesDir "$PSScriptRoot\conanfiles" `
|
|
-BuildinfoDir MSVC2017-x86_64 `
|
|
-Arch x86_64 `
|
|
-Compiler "Visual Studio" `
|
|
-CompilerVersion 15 `
|
|
-CompilerRuntime MD
|
|
|
|
Run-Conan-Install `
|
|
-ConanfilesDir "$PSScriptRoot\conanfiles" `
|
|
-BuildinfoDir MSVC2017-x86 `
|
|
-Arch x86 `
|
|
-Compiler "Visual Studio" `
|
|
-CompilerVersion 15 `
|
|
-CompilerRuntime MD
|
|
|
|
Run-Conan-Install `
|
|
-ConanfilesDir "$PSScriptRoot\conanfiles" `
|
|
-BuildinfoDir Mingw73-x86 `
|
|
-Arch x86 `
|
|
-Compiler "gcc" `
|
|
-CompilerVersion 8 `
|
|
-CompilerLibcxx "libstdc++" `
|
|
-CompilerException "dwarf2" `
|
|
-CompilerThreads "posix"
|
|
|
|
Run-Conan-Install `
|
|
-ConanfilesDir "$PSScriptRoot\conanfiles" `
|
|
-BuildinfoDir Mingw-x86_64 `
|
|
-Arch x86_64 `
|
|
-Compiler "gcc" `
|
|
-CompilerVersion 8 `
|
|
-CompilerLibcxx "libstdc++" `
|
|
-CompilerException "seh" `
|
|
-CompilerThreads "posix"
|