Are you using different application target for the lite and full versions? Do they install in different positions (/opt/dreamremotelite and /opt/dreamremotefull)?
#CONFIG += freelite CONFIG += fullversion freelite { DEFINES += VERSIONLITE TARGET = DreamRemoteDemo } fullversion { DEFINES += VERSIONFULL TARGET = DreamRemote } #------------------------------------------------------------------------ # Harmattan unix:!symbian:!maemo5 { message(Harmattan build) DEFINES += Q_WS_HARMATTAN freelite { target.path = /opt/DreamRemote/bin dfile.files = qtc_packaging/debian_harmattan/DreamRemoteDemo.desktop dfile.path = /usr/share/applications icon64.files = Icon/Harmattan/DreamRemoteDemo.png icon64.path = /usr/share/icons/hicolor/64x64/apps INSTALLS += target dfile icon64 } fullversion { target.path = /opt/DreamRemote/bin dfile.files = qtc_packaging/debian_harmattan/DreamRemote.desktop dfile.path = /usr/share/applications icon64.files = Icon/Harmattan/DreamRemote.png icon64.path = /usr/share/icons/hicolor/64x64/apps INSTALLS += target dfile icon64 } }