On Tue, Oct 2, 2018 at 12:30 PM theman whosoldtheworld <[email protected]> wrote: > > I'm trying to study QtDro and upgrade to the new QT5.11 both in the > linking library version > and in the included library version. > > Unfortunately I run into two errors that I can not understand: > > -1- Inifile inifile; -> inifile is not declared in these scope ... why? > -2- EMC_NMLFILE is not declared in this scope ... why?
I am not familiar with this software, but just on general principle, you are missing the definitions of the type/class Infiile and the defined symbol EMC_NMLFILE. what I'd do is find where they are---e.g. grep -r EMC_NMLFILE ~ Hopefully this will find the files that define them, and then you'll just add them to the compile options. Not LIBS though---it probably should be something like INCLUDES or some such. > > in my .pro file I add the right > LIBS += home/mypc/linuxcnc-dev/include > LIBS += home/mypc/linuxcnc-dev/src > LIBS += home/mypc/linuxcnc-dev/lib ... etc etc > > so the library and class added in #incluse become from righ path > > ... > > > > thanks for every suggest > bkt > > > https://drive.google.com/open?id=1c6NW9mQN2ypxXtPiCujofYd6zO2SUpnm > https://drive.google.com/open?id=1pvjWwnKTr2xjkY8OTMTlUUkBJsczP2QH > > _______________________________________________ > Emc-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/emc-users _______________________________________________ Emc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-users
