diff options
author | Christian Kandeler <christian.kandeler@nokia.com> | 2010-09-27 14:54:08 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@nokia.com> | 2010-09-27 15:44:56 +0200 |
commit | f1cb362d0d0acc197b324fbe8a6dc111be1fd56f (patch) | |
tree | 1e363f7d3d3cf1220c2eb7a0fde09731b3d1d19c /src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp | |
parent | b73b0fb0cecf131c8b326070285fa7e118ed454e (diff) | |
download | qt-creator-f1cb362d0d0acc197b324fbe8a6dc111be1fd56f.tar.gz |
Maemo: Add deployment information to library wizard.
Reviewed-by: kh1
Diffstat (limited to 'src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp')
-rw-r--r-- | src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp b/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp index 66d10816fc..d38b9893bc 100644 --- a/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp +++ b/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp @@ -103,13 +103,18 @@ void MobileLibraryParameters::writeSymbianProFile(QTextStream &str) const " addFiles.sources = " + fileName + ".dll\n" " addFiles.path = !:/sys/bin\n" " DEPLOYMENT += addFiles\n" - "}\n"; + "}"; } void MobileLibraryParameters::writeMaemoProFile(QTextStream &str) const { - str << "\n" - "maemo {\n" //TODO fill it for Maemo + str << " else:unix {\n" + " maemo5 {\n" + " target.path = /opt/usr/lib\n" + " } else {\n" + " target.path = /usr/local/lib\n" + " }\n" + " INSTALLS += target\n" "}\n"; } |