Skip to content

Commit

Permalink
another attempt at fixing the windows build for the buildserver...
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Faust committed Apr 4, 2013
1 parent 03748af commit 4756907
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion qtdeclarative
Submodule qtdeclarative updated 1 files
+2 −2 src/qml/qml/qqmlprivate.h
7 changes: 3 additions & 4 deletions st_build_windows_common.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ if ($osname -eq "win64")
$icu_bindir = "$(get-location)\icu\bin64"
}

# Copy the icu dlls to the qtbase bin dir so they're available during the build,
# which seems to be necessary for Qt 5.1
cp -Verbose $(ls "$icu_bindir/*.dll") "$(get-location)/qtbase/bin"

# Grab OpenSSL, which is required for https support
echo "downloading openssl..."
$webclient.DownloadFile("http://repo.suitabletech.com/downloads/openssl-1.0.1e-$osname.zip", "$(get-location)/openssl.zip")
Expand All @@ -34,6 +30,9 @@ echo configuring ...

if ($LastExitCode -ne 0) { exit $LastExitCode }

# Setup PATH to include <qtbase>/lib and <icu>/bin, which seems to be necessary for Qt 5.1
$env:PATH += ";$(icu_bindir);$(get-location)\qtbase\lib"

echo building...
nmake

Expand Down

0 comments on commit 4756907

Please sign in to comment.