PDFhummus error: PDFWriter.h: No such file or directory. I need help to use PDFhummus with QT Creator
-
pdfhummus error: PDFWriter.h: No such file or directory
Good night guys. I'm trying development a PDF file handler with QT Create and PDFHummus and i have get this error: PDFWriter.h: No such file or directory. I have build PDFHummus source code and add the PDFWriter.lib to my QT project througth: options -> add library -> external libraies. Someone help-me please.The same error for the others resources: #include <PDFWriter.h>, #include <PDFPage.h>, #include <PDFWriter.h>, #include <PDFPageInput.h>
-
@ronaldon
QT Creator is an IDE (editor, debugger). It has nothing to do with the errors you are vaguely reporting. That would be down to whatever compiler/linker you are using. Your errors sound like they are coming from#include
statements in your sources. So either your include paths are wrong/unspecified, or the header files are not where you think they are.Nobody can give you more information from the description you give without more specifics.
-
I need developer a tool from scratch for handler PDF files with PDF Hummus and QT create. I have build PDFHummus source code and add the PDFWriter.lib to my QT project througth: options -> add library -> external libraies but I have problems describd above. Can you help me?
-
@eyllanesc
This is my .pro:QT += core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets CONFIG += c++11 # You can make your code fail to compile if it uses deprecated APIs. # In order to do so, uncomment the following line. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 SOURCES += \ main.cpp \ pdfwriter1steps.cpp HEADERS += \ pdfwriter1steps.h FORMS += \ pdfwriter1steps.ui # Default rules for deployment. qnx: target.path = /tmp/$${TARGET}/bin else: unix:!android: target.path = /opt/$${TARGET}/bin !isEmpty(target.path): INSTALLS += target win32:CONFIG(release, debug|release): LIBS += -L$$PWD/./ -lPDFWriter else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/./ -lPDFWriter else:unix: LIBS += -L$$PWD/./ -lPDFWriter INCLUDEPATH += $$PWD/. DEPENDPATH += $$PWD/.
-
@ronaldon said in PDFhummus error: PDFWriter.h: No such file or directory. I need help to use PDFhummus with QT Creator:
pdfhummus error: PDFWriter.h: No such file or directory
The same error for the others resources: #include <PDFWriter.h>, #include <PDFPage.h>, #include <PDFWriter.h>, #include <PDFPageInput.h>
So where are these header files actually located, and what have you done about making your
INCLUDEPATH
include the directory so that the compiler can find them? I don't see anything in your.pro
for this? -
-
@ronaldon said in PDFhummus error: PDFWriter.h: No such file or directory. I need help to use PDFhummus with QT Creator:
@JonB
I think I understand now, I shouldn't use PDFWriter.lib, instead i should add to my project the PDF Hummus fonts. It is that true?Hi,
As @JonB requested: where is the header of that library located on your hard drive ?
That path is missing from your INCLUDEPATH variable.
-
Build the library properly and use it rather than trying to do it by hand like you do.
-
@SGaist
I receive this error now:C:\Users\Usuario\Documents\QTProjects\build-TestPDFhummus-Desktop_Qt_5_15_2_MinGW_64_bit-Debug..\TestPDFhummus\main.cpp:16: error: undefined reference to
PDFWriter::PDFWriter()' debug/main.o: In function
qMain(int, char**)':
C:\Users\Usuario\Documents\QTProjects\build-TestPDFhummus-Desktop_Qt_5_15_2_MinGW_64_bit-Debug/../TestPDFhummus/main.cpp:16: undefined reference to `PDFWriter::PDFWriter()'Now, my .pro is:
QT += core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets CONFIG += c++11 # You can make your code fail to compile if it uses deprecated APIs. # In order to do so, uncomment the following line. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 SOURCES += \ main.cpp \ testpdfhummus.cpp HEADERS += \ testpdfhummus.h FORMS += \ testpdfhummus.ui unix:!macx: LIBS += -L$$PWD/./pdf_hummus/Build/PDFWriter/ -lPDFWriter INCLUDEPATH += $$PWD/./pdf_hummus/PDFWriter DEPENDPATH += $$PWD/./pdf_hummus/PDFWriter unix:!macx: PRE_TARGETDEPS += $$PWD/./pdf_hummus/Build/PDFWriter/libPDFWriter.a unix:!macx: LIBS += -L$$PWD/./pdf_hummus/Build/FreeType/ -lFreeType INCLUDEPATH += $$PWD/./pdf_hummus/FreeType/include DEPENDPATH += $$PWD/./pdf_hummus/FreeType/include unix:!macx: PRE_TARGETDEPS += $$PWD/./pdf_hummus/Build/FreeType/libFreeType.a unix:!macx: LIBS += -L$$PWD/./pdf_hummus/Build/LibJpeg/ -lLibJpeg INCLUDEPATH += $$PWD/./pdf_hummus/LibJpeg DEPENDPATH += $$PWD/./pdf_hummus/LibJpeg unix:!macx: PRE_TARGETDEPS += $$PWD/./pdf_hummus/Build/LibJpeg/libLibJpeg.a unix:!macx: LIBS += -L$$PWD/./pdf_hummus/Build/LibTiff/ -lLibTiff INCLUDEPATH += $$PWD/./pdf_hummus/LibTiff DEPENDPATH += $$PWD/./pdf_hummus/LibTiff unix:!macx: PRE_TARGETDEPS += $$PWD/./pdf_hummus/Build/LibTiff/libLibTiff.a unix:!macx: LIBS += -L$$PWD/./pdf_hummus/Build/ZLib/ -lZlib INCLUDEPATH += $$PWD/./pdf_hummus/ZLib DEPENDPATH += $$PWD/./pdf_hummus/ZLib unix:!macx: PRE_TARGETDEPS += $$PWD/./pdf_hummus/Build/ZLib/libZlib.a # Default rules for deployment. qnx: target.path = /tmp/$${TARGET}/bin else: unix:!android: target.path = /opt/$${TARGET}/bin !isEmpty(target.path): INSTALLS += target DISTFILES += \
-
-
Please when pasting globs of code/
.pro
file like this learn to use the forum's Code tag to enclose the literal stuff and make it readable by others. -
In the text you show, which line are you claiming is the one your MinGW will use to add the necessary options for linking with your
PDFWriter
library? (You might also look at the link line generated which causes the error you quote.)
-
-
@ronaldon
It's much better with the code tag! :)I'm afarid this is not my area so you'll have to wait for someone else to comment, but: I do not think you are linking against the
PDFWriter
library.unix:!macx: LIBS += -L$$PWD/./pdf_hummus/Build/PDFWriter/ -lPDFWriter
I think you need that line, or similar, for your MinGW. And I assume that line is only applied if you are compiling for
unix
(and notmacx
), whereas as you are Windows.