Hi all,

Noticed something after upgrading to 4.3.1 on windows, I always used:
Qt Code:
  1. LIBS += /path/to/your/lib/Libfile.lib
To copy to clipboard, switch view to plain text mode 
and it seems broken and gives only linker error's and replacing it by:
Qt Code:
  1. LIBS += -L/path/to/your/lib -lLibfile
To copy to clipboard, switch view to plain text mode 
seems to fix it.

Is there an explanation why it stopped working did I forget to configure something?

Thanks!