Hello,

It's possible to include in a Qt project an external library written in ANSI C??

I tried it writting,

Qt Code:
  1. #include "library.h"
To copy to clipboard, switch view to plain text mode 

in my source program, and inserting

Qt Code:
  1. LIBS += -Llibrary.lib
To copy to clipboard, switch view to plain text mode 

in my project definition.

When I compile the project, it seems that Qt finds the library correctly, but I get the followings error messages

Qt Code:
  1. undefined reference to 'library_function@8'
To copy to clipboard, switch view to plain text mode 



Help me please!! Thanks!!