I having been struggling with an error for several days now but with no luck to find the correct solution. I'm trying to use the UMFPack library installed with cygwin on windows in a c++ application I'm developing on QT Creator.
I added the library by going to my project-> right click -> Add Library... Library Adding Forum
In the Library File I pointed to : /cygwin/lib/libumfpack.dll.a
In Include Path I pointed to : /cygwin/usr/include/suitesparse
Linkage type : Dynamic
The QTCreator added the link automatically as follows :
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../../cygwin64/lib/ -llibumfpack.dll
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../../cygwin64/lib/ -llibumfpack.dlld
else:unix: LIBS += -L$$PWD/../../../../cygwin64/lib/ -llibumfpack.dll
INCLUDEPATH += $$PWD/../../../../cygwin64/usr/include/suitesparse
DEPENDPATH += $$PWD/../../../../cygwin64/usr/include/suitesparse
However, when I build the project the following error is displayed:
**:-1: error: LNK1104: cannot open file 'libumfpack.dlld.lib'**
Can anyone point me to the correct direction?