Hi,

I am currently using QT 4.8 and MingW compiler for my application. I am using third party libraries (Qxt & QWT). Now I want to port our application to Qt5. Qxt library is successfully build.

Steps followed for building Qxt:

Qt Code:
  1. qmake
  2. mingw32-make
  3. mingw32-make install
To copy to clipboard, switch view to plain text mode 

qxt.prf and qxtvars.prf file are copied to C:\Qt\Qt5.0.2\5.0.2\mingw47_32\mkspecs\features

In application's .pro file I have mentioned

Qt Code:
  1. CONFIG += qxt
  2. QXT += core gui
To copy to clipboard, switch view to plain text mode 

When I compiled it I am getting the errors

Qt Code:
  1. Project WARNING: qtAddLibrary() is deprecated. Use qtAddModule() or QT+= instead.
  2. Project ERROR: No module matching library 'QxtGui' found.
To copy to clipboard, switch view to plain text mode 


Could you please guide me resolving this issue?

Thanks in advance.