Hi,
I've created simple project and i want to add a library to my project and i want to add its path base on my platform so i did this in my pro file:
Qt Code:
  1. win32
  2. {
  3. INCLUDEPATH += C:\Qwt-6.0.2\include
  4. LIBS += -LC:\Qwt-6.0.2\lib -lqwt
  5.  
  6. CONFIG += qwt
  7. }
To copy to clipboard, switch view to plain text mode 

but i get " error: Parse Error ('win32')" . When i remove win32 it works fine. any suggestion?