I try to add the dll link to the Qt project. Previously downloaded for MiniGW.
pro file content
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/D:/test/sodium/lib/ -lsodium else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/D:/test/sodium/lib/ -lsodiumd else:unix: LIBS += -L$$PWD/D:/test/sodium/lib/ -lsodium INCLUDEPATH += $$PWD/D:/test/sodium/include DEPENDPATH += $$PWD/D:/test/sodium/include win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/D:/test/sodium/lib/libsodium.a else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/D:/test/sodium/lib/libsodiumd.a else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/D:/test/sodium/lib/sodium.lib else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/D:/test/sodium/lib/sodiumd.lib else:unix: PRE_TARGETDEPS += $$PWD/D:/test/sodium/lib/libsodium.a I try to enclose libu - writes No such file or directory
