Hi, guys, I need some help!!!

I try to compile an application both in debug and release mode in Qt Creator 3.5.1 and get weird results.
If I just build a debug or release .exe file (foo.pro file to foo.exe), it's OK!
But if I try to change the name of target or add a .rc-file reference to the .pro file - I miss the compatibility tab of an application properties in windows.
As result, in that case I get a warning message from the windows user account control.
Sure I could just change the name of "compatible" .exe with a necessary name after compilation but I'd like to find out causes this strange behavior.

Do anybody have any ideas what's wrong?

Compiler - mingw 4.9.2_32bit
OS -Windows 10

Qt Code:
  1. TARGET = FWUpdate #if added - compatibility property is lost!
  2. TEMPLATE = app
  3.  
  4. QT += core network widgets gui serialport
  5.  
  6. INCLUDEPATH += c:/XOL/STM32/libusb_libs/dfu-util/src/ \
  7. C:/libusb/include/
  8.  
  9.  
  10. LIBS += -lVersion \
  11. -lsetupapi \
  12. -luser32 \
  13. c:/libusb/lib/libusb-1.0.a \
  14. c:/XOL/STM32/libusb_libs/build-libdfu-Desktop_Qt_5_5_1_MinGW_32bit-Debug/Win32/Debug/liblibdfu.a
  15.  
  16. HEADERS += ./emiter.h \
  17. ./cmndialog.h
  18. SOURCES += ./cmndialog.cpp \
  19. ./main.cpp
  20. FORMS += ./cmndialog.ui
  21.  
  22.  
  23. DEPENDPATH += c:/libusb/include/
  24. PRE_TARGETDEPS+= c:/libusb/lib/libusb-1.0.a \
  25. c:/XOL/STM32/libusb_libs/build-libdfu-Desktop_Qt_5_5_1_MinGW_32bit-Debug/Win32/Debug/liblibdfu.a
  26.  
  27. RC_FILE += CMNDialog.rc
To copy to clipboard, switch view to plain text mode