header files: include them in your code
lib files: add LIBS += -l<libname> to .pro file of your project
dll files: these are not required for compilation.
header files: include them in your code
lib files: add LIBS += -l<libname> to .pro file of your project
dll files: these are not required for compilation.
Zlatomir (30th September 2010)
What if I wish to add a .dll file to my project rather than a .lib? It doesn't seem to recognize that format.
You don't. Your project relies on X.lib which in turns relies on X.dll. Your project does not need X.dll to compile, only for execution.
Bookmarks