Re: Accounting app won't build due to Qwt
Brought to you by:
rathmann
|
From: Uwe R. <Uwe...@ti...> - 2019-10-14 08:23:43
|
On 10/13/19 8:27 PM, Robin Rowe wrote: > On Win64 am trying to build an old open source accounting package I > found on the Internet called QHacc4. It uses Qwt, which I am able to > build. And you did a make install afterwards ? > mingw32-make[2]: *** No rule to make target 'qwt/qwt_plot.h', needed > by 'build/debug/uis/ui_PlotWindow.h'. Stop. Check where you have installed qwt and if the include path is added to the compile command. > An installation/.pro issue? I added this to my .pro file: > > include ( qwt/qwt.prf ) INCLUDEPATH += $$PWD When having done the make install step you can make use of qwt.prf. How is explained here: https://qwt.sourceforge.io/qwtinstall.html#COMPILEANDLINKAPP Without doing "make install" the qwt.prf file is useless. Including $$PWD is not necessary for compiling/linking your application against a proper Qwt installation. HTH, Uwe |