summaryrefslogtreecommitdiffstats
path: root/src/s60installs/s60installs.pro
Commit message (Collapse)AuthorAgeFilesLines
* Keep the same capitalization for Phonon.dll.Frans Englich2009-11-161-1/+1
| | | | Task-number: QTBUG-4735
* Install Qt declarative (if available) and QmlPatterns on S60Martin Jones2009-11-161-0/+4
| | | | Reviewed-by: Warwick Allison
* Inclusion of QtOpenVg overwrites all other modules in s60install.proSami Merilä2009-11-031-1/+1
| | | | | | | | The pro-file is missing '+' when it is adding QtOpenVg support for sis file. Task-number: None Reviewed-by: Janne Koskinen
* Force Qt libs to install on phone memory in Symbian.Miikka Heikkinen2009-11-031-12/+12
| | | | | | | | | | | | Starting Qt apps when Qt libs are installed on a memory card takes ages (15-20 seconds), because Symbian recalculates hash of the dll every time it loads it from a non-system drive. Worked around this issue by forcing installation of Qt libs to the C-drive. Task-number: QT-690 Reviewed-by: Janne Koskinen
* Bad line ending in cabbff076f40eeeb56beb53220a40f124a2e0215Shane Kearns2009-10-281-1/+1
| | | | Reviewed-by: TrustMe
* Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt-s60-public into 4.6Shane Kearns2009-10-281-0/+4
|\
| * Enable QtXmlPatterns module in qt package and assign an UID for it.Liang QI2009-10-281-0/+4
| | | | | | | | | | | | | | Enable QtXmlPatterns module in qt package and assign an UID for it. RevBy: Miikka Heikkinen RevBy: Jason Barron
* | Change deployment of SQLite to check for stub SIS fileShane Kearns2009-10-281-2/+2
|/ | | | | | | | This is less wrong than searching for a file name on specific drives. Correct solution is to use an embedded SIS file dependency, for that we need to get a symbian-signed sis file from the symbian OS team. Reviewed-by: Miikka Heikkinen
* Prevented deployment of QtScript when not compiling that module.axis2009-10-071-1/+4
| | | | RevBy: Miikka Heikkinen
* Changed Qt package name in pkg and generated sis files for Symbian.Janne Anttila2009-10-051-6/+6
| | | | | | | | | It was decided on weekly telco that Symbian pkg and sis files can use plain Qt name, since it is already clear that user is installing "Qt for Symbian" version of Qt. Task-number: QT-772 Reviewed-by: Miikka Heikkinen
* Merge commit 'qt/4.6' into mmfphononFrans Englich2009-09-291-0/+5
|\
| * make sure QtWebKit and QtScript are included in the .sis fileEspen Riskedal2009-09-291-0/+5
| | | | | | | | | | Task-number: QTBUG-4613 Reviewed-by: Aleksandar Babic
* | Fix merge conflict: the file was renamed.Frans Englich2009-09-241-0/+7
|/
* Install only the required S60 SDK version specific plugin to the HW.Janne Anttila2009-08-311-11/+19
| | | | | | | | | | | | | | | qmake has been lately expanded with pkg_prerules / pkg_postrules support which make it possible to customize .pkg file content via pro file. In addition we have got template package file support which takes care of expanding TARGET and PLATFORM variables from .pkg files before creating .sis file. With help of these features and since .pkg format supports conditional install statements, we can now install only the S60 version specific plugin to each HW. This saves disk usage a bit. Task-number: 248061 Reviewed-by: Miikka Heikkinen
* Trivial change to comment.Janne Anttila2009-08-311-0/+1
| | | | Reviewed-by: TrustMe
* Removed hard-coded sqlite3 deployment statement - used PKG conditions.Janne Anttila2009-08-311-11/+7
| | | | | | | | | | | | | | Before this change Qt did not install to device which had sqlite3 already in ROM. Since we now install the sqlite3 only if it is not on any drive, the installation works also with preinstalled sqlite. Even better appraoch would be to use embedded SIS file for sqlite, since that would allow sqlite3 upgrade without upgrading the whole Qt. However we yet don't have such SIS, but once we get one from Symbian this needs to be further changed. Task-number: 258858 Reviewed-by: Miikka Heikkinen
* Various small fixes and cleanups for symbian qmake generator.Janne Anttila2009-08-281-0/+92
The included fixes / cleanups: - QtLibs PKG filename changed - Component name in Qt libs pkg changed to "Qt for S60" * Done in order to make SISX upgrade possible after pre-release. - Removed passing of 'fixedTarget' member variable as an argument - Removed whitespaces from generated file names - Fixed 'make sisx' calling syntax when custom makefile name used - Fixed MAKEFILE variable content in generated makefiles - Changed names of environment variables used by 'make sisx' * Nee variables have 'QT_SISX_' prefix Reviewed-By: Miikka Heikkinen