aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2019-09-23 16:38:06 +0200
committerLiang Qi <liang.qi@qt.io>2019-09-23 16:38:06 +0200
commit44073f55632e7848d372a60c4417bbc8664afd2c (patch)
tree6fcebed721da0d0049ae1413538e8f6bf9dfbf92 /coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1
parent709e687c84c67ba8faf2411c081b29f25d76de4e (diff)
parentfd87ff83aafc0f103538376591e9f36dfeb1410d (diff)
Merge remote-tracking branch 'origin/dev' into wip/cmake
Conflicts: .gitmodules coin/platform_configs/default.txt Change-Id: I78eb6b6522c678fb40f1202c0040c1c87ff890a6
Diffstat (limited to 'coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1')
-rw-r--r--coin/provisioning/qtci-windows-10-x86_64/11-conan.ps153
1 files changed, 53 insertions, 0 deletions
diff --git a/coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1 b/coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1
new file mode 100644
index 00000000..a651bb0c
--- /dev/null
+++ b/coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1
@@ -0,0 +1,53 @@
+. "$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 7 `
+ -CompilerLibcxx "libstdc++" `
+ -CompilerException "dwarf2" `
+ -CompilerThreads "posix"
+
+Run-Conan-Install `
+ -ConanfilesDir "$PSScriptRoot\conanfiles" `
+ -BuildinfoDir Mingw73-x86_64 `
+ -Arch x86_64 `
+ -Compiler "gcc" `
+ -CompilerVersion 7 `
+ -CompilerLibcxx "libstdc++" `
+ -CompilerException "seh" `
+ -CompilerThreads "posix"