Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
Qt Creator 2.1.0-rc1
-
None
-
2de93e9b96946ce559d4ace2657198837229084d
Description
Qt Creator generates a deployment.pri file, which overwrites at least two variables:
ICON = $${TARGET}.svg TARGET.EPOCHEAPSIZE = 0x20000 0x2000000
This means if user needs to specify custom values for these variables, he'll have to do so after the deployment.pri include statement in .pro file. It would be better if deployment.pri only sets these values when user has not specified them himself, e.g:
isEmpty(ICON): ICON = $${TARGET}.svg isEmpty(TARGET.EPOCHEAPSIZE): TARGET.EPOCHEAPSIZE = 0x20000 0x2000000