Skip to content
Snippets Groups Projects
Commit b1888c76 authored by Joerg Bornemann's avatar Joerg Bornemann
Browse files

adjust deployment.pri to DEPLOYMENT variable changes in Qt 5


X.sources has been deprecated in Qt 4.8.0 and removed in Qt 5.

Change-Id: I3d5228bd6db6d3eaccd76fc49e9b934263f9922c
Reviewed-by: default avatarThomas Hartmann <Thomas.Hartmann@nokia.com>
parent 3ddb1fb7
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,11 @@
defineTest(qtcAddDeployment) {
for(deploymentfolder, DEPLOYMENTFOLDERS) {
item = item$${deploymentfolder}
itemsources = $${item}.sources
greaterThan(QT_MAJOR_VERSION, 4) {
itemsources = $${item}.files
} else {
itemsources = $${item}.sources
}
$$itemsources = $$eval($${deploymentfolder}.source)
itempath = $${item}.path
$$itempath= $$eval($${deploymentfolder}.target)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment