What did not work on the blogspot example? The example seems to be enough simple.
Try not to use '-L' and '-l' when specifying the qwt library. I have a better experience with specifying libraries directly. With Linux it should be
LIBS += /usr/local/qwt-6.1.0-rc3/lib/qwt.so
LIBS += /usr/local/qwt-6.1.0-rc3/lib/qwt.so
To copy to clipboard, switch view to plain text mode
With winblows it should be
LIBS += C:\path\qwt.lib
LIBS += C:\path\qwt.lib
To copy to clipboard, switch view to plain text mode
Beware of prefixes! Instead of qwt.so, you can have libqwt.so and so on. If you have libqwt.so then
LIBS += /usr/local/qwt-6.1.0-rc3/lib/libqwt.so
LIBS += /usr/local/qwt-6.1.0-rc3/lib/libqwt.so
To copy to clipboard, switch view to plain text mode
Check with your file manager. Also, with winblows, you should have both LIB and DLL. You link with the LIB and the DLL must be on your PATH.
Bookmarks