No the error is a parsing error, and it was my mistake:
Qt Code:
win32:LIBS += -LC:\QT\2009.04\mingw\lib \ -llibvfw32To copy to clipboard, switch view to plain text mode
I used '/' instead of '\' for the line break.
libname.a and libname.so are unix types for static and shared libs.
But as IFAIK (can't remember any more) MinGW under windows should support both the unix and windows types.
So if your lib is a *.a use -llibvfw32.a or -lLibvfw32.lib depending on what you have.
Bookmarks