Quote Originally Posted by bruce1007
Hi all, my app uses a third party dll library under win32 with QT 4.1.2 framework, and I "reimp"ed the import lib to a ".a" library file, but linking problem is occured when i finally built the project.

Need your help.

thanks
In your project file (.pro) add this line

Qt Code:
  1. LIBS += -L<PATH_WHERE_LIB_IS> -l<libname>
To copy to clipboard, switch view to plain text mode 

Bye