summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/sis_targets.prf
Commit message (Collapse)AuthorAgeFilesLines
* Fix "installer_sis" and "deploy" targets when TARGET has pathMiikka Heikkinen2010-08-171-3/+2
| | | | | | | | | | Dependencies got generated wrong in Makefile because sis is always created in the .pro file directory but dependency included path that was in TARGET. Task-number: QTBUG-12884 Reviewed-by: Shane Kearns (cherry picked from commit 434ce6748ea7f082357b6d7ab542c9fa2285bd4c)
* Fixed a parsing error during sis and runonphone target creation.axis2010-07-271-1/+1
| | | | | RevBy: Trust me (cherry picked from commit ebe6a5238947c30a613b61b521cb0d094efa2d02)
* Support for "deploy" make target in SymbianMiikka Heikkinen2010-07-021-0/+10
| | | | | | | | Executing "make deploy" will recreate project sis file and deploy it into a device. Task-number: QTBUG-5155 Reviewed-by: axis
* Fixed Symbian resources not honoring TARGET with a path.axis2010-06-291-12/+13
| | | | | Task: QT-3540 RevBy: Thomas Zander
* Fix "missing store_build" errorsMiikka Heikkinen2010-06-231-0/+6
| | | | | | | | Create a dummy store_build target in projects that do not deploy anything when building for symbian-abld. Task-number: QTBUG-11656 Reviewed-by: Janne Koskinen
* Provide 'make unsigned_sis' target for Symbian mkspecsMiikka Heikkinen2010-06-161-0/+25
| | | | | | | | | | | Rationale for this is that currently there is no simple way to create a sis package that can be properly signed via Symbian open signed mechanism, as 'make sis' will by default use self-signed certificates and automatically patch capabilities of binaries to remove non-self-signable ones. Task-number: QTBUG-11455 Reviewed-by: Janne Koskinen
* Fix recursive 'make sis' for symbian buildsMiikka Heikkinen2010-06-111-2/+13
| | | | | | | | | | | | | It makes no sense for 'sis' to depend on 'first' or really any target in symbian-abld and symbian-sbsv2 builds, as all builds are recursive anyway. Also do not generate real sis targets for projects that do not actually deploy anything, making the check equivalent to one in qmake for generating pkg files. Task-number: QTBUG-5312 Reviewed-by: Janne Koskinen
* Fixed DEPLOYMENT variable check in sis_targets.prfMiikka Heikkinen2010-06-091-1/+1
| | | | | | | Checking just for count can fail when default_deployment is replaced with single custom deployment item. Reviewed-by: Janne Koskinen
* escape backslashesOswald Buddenhagen2010-05-261-1/+1
| | | | this makes windows-style path specs *ugly*. that's intentional. :-P
* Fix generation of stub sis filesShane Kearns2010-05-141-1/+1
| | | | | | | | Convert paths in DEPLOYMENT to the rom drive (z:) Filter out unwanted parts of the header (dependencies) Task-number: QTBUG-10118 Reviewed-by: Alessandro Portale
* Make 'make sis' recursive again.Thomas Zander2010-04-291-1/+1
| | | | | After default_deployment was added as default option our test for project type was not reached anymore. Fix that.
* Implemented recursive "sis" target and enabled sis_targets feature.axis2010-02-231-0/+139
The sis target will depend on the main build target of each project, which should make it possible to simply run "make sis" in the root of a clean tree (after configure, of course), and have sis packages generated for everything. It works at least for Qt. This required some changes to the dependency generation in Qt, to make sure that s60installs builds its package after all of Qt, and that fluidlauncher has all the required files before building a package. In addition, all the sis target code was moved into its own qmake feature file, called sis_targets. It is currently enabled by default for Symbian.