Hello,
It's possible to include in a Qt project an external library written in ANSI C??
I tried it writting,
#include "library.h"
#include "library.h"
To copy to clipboard, switch view to plain text mode
in my source program, and inserting
LIBS += -Llibrary.lib
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
undefined reference to 'library_function@8'
undefined reference to 'library_function@8'
To copy to clipboard, switch view to plain text mode
Help me please!! Thanks!!
Bookmarks