use INSTALLS instead of DEPLOYMENT

The DEPLOYMENT variable has been deprecated.

Change-Id: I1c7c07b36a2e665ae302e4f43f7f2dc752f3c1f4
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
This commit is contained in:
Joerg Bornemann 2015-06-01 21:28:59 +02:00
parent dd274a5455
commit 3ce99adfa4
8 changed files with 8 additions and 8 deletions

View File

@ -16,5 +16,5 @@ wince*: {
CONFIG(debug, debug|release):sqlPlugins.files = $$QT_BUILD_TREE/plugins/sqldrivers/*d4.dll CONFIG(debug, debug|release):sqlPlugins.files = $$QT_BUILD_TREE/plugins/sqldrivers/*d4.dll
CONFIG(release, debug|release):sqlPlugins.files = $$QT_BUILD_TREE/plugins/sqldrivers/*[^d]4.dll CONFIG(release, debug|release):sqlPlugins.files = $$QT_BUILD_TREE/plugins/sqldrivers/*[^d]4.dll
sqlPlugins.path = sqldrivers sqlPlugins.path = sqldrivers
DEPLOYMENT += sqlPlugins INSTALLS += sqlPlugins
} }

View File

@ -18,5 +18,5 @@ INSTALLS += target
wince*: { wince*: {
addFile.files = example.jpg addFile.files = example.jpg
addFile.path = . addFile.path = .
DEPLOYMENT += addFile INSTALLS += addFile
} }

View File

@ -14,5 +14,5 @@ INSTALLS += target
wince*: { wince*: {
addFiles.files = main.cpp mainwindow.cpp addFiles.files = main.cpp mainwindow.cpp
addFiles.path = . addFiles.path = .
DEPLOYMENT += addFiles INSTALLS += addFiles
} }

View File

@ -24,5 +24,5 @@ wince*: {
} else { } else {
imageFiles.path = images imageFiles.path = images
} }
DEPLOYMENT += imageFiles INSTALLS += imageFiles
} }

View File

@ -14,5 +14,5 @@ INSTALLS += target
wince*: { wince*: {
addFiles.files += *.gif addFiles.files += *.gif
addFiles.path = . addFiles.path = .
DEPLOYMENT += addFiles INSTALLS += addFiles
} }

View File

@ -14,6 +14,6 @@ INSTALLS += target
wince*: { wince*: {
addFiles.files = frank.xbel jennifer.xbel addFiles.files = frank.xbel jennifer.xbel
addFiles.path = "\\My Documents" addFiles.path = "\\My Documents"
DEPLOYMENT += addFiles INSTALLS += addFiles
} }

View File

@ -9,7 +9,7 @@ win32: CONFIG += console
wince*:{ wince*:{
htmlfiles.files = *.html htmlfiles.files = *.html
htmlfiles.path = . htmlfiles.path = .
DEPLOYMENT += htmlfiles INSTALLS += htmlfiles
} }
# install # install

View File

@ -16,5 +16,5 @@ INSTALLS += target
wince*: { wince*: {
addFiles.files = frank.xbel jennifer.xbel addFiles.files = frank.xbel jennifer.xbel
addFiles.path = "\\My Documents" addFiles.path = "\\My Documents"
DEPLOYMENT += addFiles INSTALLS += addFiles
} }