hello!
I have qt 4.4.3 installed and need the qwt library for my application. I have downloaded qwt version 5.1.1. Folowing the install instructions, i get stuck after the:
qmake
make
make install
the next step i can't seem to find out how to do it even after a lot of search..how do i get the libraries the right way?
when i try to compile the examples make gives 'undefined reference' for everything qwt related.
I'm using OpenSuse 11.1 with kde4.
thanks a lot for the help!
SOLUTION (just for reference)//////////////////////////////////////////////
Taking the source files, from one of the examples that ship with the qwt package, and taking it to another directory I issued the commands:
qmake -project (because I didn't transport the .pro file)
qmake
and then I edited the Makefile created by qmake and added:
in INCPATH: -I/usr/lib/qwt-5.1.1/include (directory where i have the include files)
in LIBS: -lqwt
and it compiles successfully!
///////////////////////////////////////////////////////////////////////////////
Bookmarks