Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Link problem again
-
Hello i'm under linux and i need to use Archive - An Archive library for Qt, reading the instruction that are:
Linking to the library
By default, Archive is built as a static library and needs to be linked in to your application.
To do this set the ARCHIVEHOME environment variable to the directory containing the src/ directory and include the file archive.pri in your project file:
file:
@include( archive.pri)@
i have set the ARCHIVEHOME printenv return:
@ARCHIVEHOME=/home/luca/Scrivania/Luca/Pacchetti_C++/archive_1_0_6/@
than in the pro file i have add:
@include( archive.pri)@But i can't do:
@#include <Archive.h>@What is missing
Thanks
Luca
-
Hello i heve solved using this:
@LIBS += -L/home/luca/Scrivania/Luca/Pacchetti_C++/archive_1_0_6/lib -lbarchive
INCLUDEPATH += /home/luca/Scrivania/Luca/Pacchetti_C++/archive_1_0_6/include@