aboutsummaryrefslogtreecommitdiffstats
path: root/coin
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@qt.io>2018-07-18 10:41:05 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2018-07-18 18:30:37 +0000
commit44280782ed8a78624546094f002e7460e6e8ca78 (patch)
tree927279b3a962402d22482d369229c35bdabcfd2d /coin
parentc87e4754b234854fb948733fb31679ec3794a7ca (diff)
Open62541 win32: Add python to dev environment
The autodetection of cmake used a different python for x86 builds of msvc. Those did not have six installed. Instead, use one python for all build variants to stay consistent. Change-Id: Id1ad2bc320e47a68358364ff94d78993ba0b0848 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'coin')
-rw-r--r--coin/provisioning/common/windows/open62541.ps11
1 files changed, 1 insertions, 0 deletions
diff --git a/coin/provisioning/common/windows/open62541.ps1 b/coin/provisioning/common/windows/open62541.ps1
index 08ff6caf..1ff30010 100644
--- a/coin/provisioning/common/windows/open62541.ps1
+++ b/coin/provisioning/common/windows/open62541.ps1
@@ -86,6 +86,7 @@ function PushDevEnvironment
$adaptedPath = $env:PATH
$jomLocation = [Environment]::GetEnvironmentVariable("CI_JOM_PATH", "Machine")
$adaptedPath = $adaptedPath + ";" + $jomLocation
+ $adaptedPath = $adaptedPath + ";" + "C:\Python27"
$adaptedPath = $adaptedPath + ";" + "C:\CMake\bin"
[Environment]::SetEnvironmentVariable("PATH", $adaptedPath, "Process")
}