Skip to content

Commit

Permalink
update module versions to Qt stable (5.1 staging)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Faust committed Mar 31, 2013
1 parent 7db1473 commit 686c874
Show file tree
Hide file tree
Showing 22 changed files with 28 additions and 30 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,6 @@
[submodule "qtdesktopcomponents"]
path = qtdesktopcomponents
url = git://gitorious.org/qtplayground/qtdesktopcomponents
[submodule "qtquickcontrols"]
path = qtquickcontrols
url = git://qt.gitorious.org/qt/qtquickcontrols
8 changes: 4 additions & 4 deletions qt.pro
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ module_qtgraphicaleffects.subdir = qtgraphicaleffects
module_qtgraphicaleffects.target = module-qtgraphicaleffects
module_qtgraphicaleffects.depends = module_qtbase module_qtdeclarative

module_qtdesktopcomponents.subdir = qtdesktopcomponents
module_qtdesktopcomponents.target = module-qtdesktopcomponents
module_qtdesktopcomponents.depends = module_qtbase module_qtdeclarative
module_qtquickcontrols.subdir = qtquickcontrols
module_qtquickcontrols.target = module-qtquickcontrols
module_qtquickcontrols.depends = module_qtbase module_qtdeclarative

# only qtbase is required to exist. The others may not - but it is the
# users responsibility to ensure that all needed dependencies exist, or
Expand Down Expand Up @@ -131,4 +131,4 @@ exists(qtgraphicaleffects/qtgraphicaleffects.pro): SUBDIRS += module_qtgraphical
exists(qttranslations/qttranslations.pro): SUBDIRS += module_qttranslations
exists(qtdoc/qtdoc.pro): SUBDIRS += module_qtdoc
exists(qtqa/qtqa.pro): SUBDIRS += module_qtqa
exists(qtdesktopcomponents/qtdesktopcomponents.pro): SUBDIRS += module_qtdesktopcomponents
exists(qtquickcontrols/qtquickcontrols.pro): SUBDIRS += module_qtquickcontrols
2 changes: 1 addition & 1 deletion qtactiveqt
Submodule qtactiveqt updated from b5366d to b8169e
2 changes: 1 addition & 1 deletion qtbase
Submodule qtbase updated 3144 files
2 changes: 1 addition & 1 deletion qtdeclarative
Submodule qtdeclarative updated 788 files
1 change: 0 additions & 1 deletion qtdesktopcomponents
Submodule qtdesktopcomponents deleted from 35f061
6 changes: 0 additions & 6 deletions qtdesktopcomponents.pro

This file was deleted.

2 changes: 1 addition & 1 deletion qtdoc
Submodule qtdoc updated from e7435a to 988a8d
2 changes: 1 addition & 1 deletion qtgraphicaleffects
Submodule qtgraphicaleffects updated from 5717e8 to 23a1dc
2 changes: 1 addition & 1 deletion qtimageformats
Submodule qtimageformats updated from c8f125 to 507314
2 changes: 1 addition & 1 deletion qtjsbackend
Submodule qtjsbackend updated from cbd9ec to c97afb
2 changes: 1 addition & 1 deletion qtmultimedia
Submodule qtmultimedia updated 321 files
2 changes: 1 addition & 1 deletion qtqa
Submodule qtqa updated from b2221f to 898d1d
1 change: 1 addition & 0 deletions qtquickcontrols
Submodule qtquickcontrols added at 04e8ac
2 changes: 1 addition & 1 deletion qtrepotools
Submodule qtrepotools updated from ef4f14 to 5453e0
2 changes: 1 addition & 1 deletion qtscript
Submodule qtscript updated from 7a09d1 to a5116f
2 changes: 1 addition & 1 deletion qtsvg
Submodule qtsvg updated from 84abe5 to 9c79ef
2 changes: 1 addition & 1 deletion qttools
Submodule qttools updated from 9deef1 to 7b6a62
2 changes: 1 addition & 1 deletion qttranslations
Submodule qttranslations updated from ab38e8 to 4e896d
2 changes: 1 addition & 1 deletion qtwebkit
Submodule qtwebkit updated 101 files
2 changes: 1 addition & 1 deletion qtxmlpatterns
Submodule qtxmlpatterns updated from c3c83e to 18d558
7 changes: 4 additions & 3 deletions st_build_windows_common.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ 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 @@ -42,8 +46,6 @@ if ($LastExitCode -ne 0) { exit $LastExitCode }

echo "copying icu..."
# Copy ICU dlls into the install dir
ls "icu/bin/*.dll"
cp -Verbose $(ls "$icu_bindir/*.dll") "$version/lib"
cp -Verbose $(ls "$icu_bindir/*.dll") "$version/bin"

ls "$version/lib/*icu*.dll"
Expand All @@ -52,7 +54,6 @@ if ($LastExitCode -ne 0) { exit $LastExitCode }

# Copy openssl dlls into the install dir
echo "copying openssl..."
cp -Verbose "$(get-location)/openssl/bin/*.dll" "$version/lib"
cp -Verbose "$(get-location)/openssl/bin/*.dll" "$version/bin"

echo creating tarball...
Expand Down

0 comments on commit 686c874

Please sign in to comment.