Uploaded image for project: 'Qt Creator'
  1. Qt Creator
  2. QTCREATORBUG-3454

Deployment.pri overwrites some variables.

XMLWordPrintable

    • 2de93e9b96946ce559d4ace2657198837229084d

      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
      

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

            dt Daniel Teske
            e0348803 Miikka Heikkinen
            Votes:
            1 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved:

                There are no open Gerrit changes