And I get the error message: "collect2: ld returned 1 exit status"
Probably linker could not find needed files, could you show us your .pro file ?
If you have a line in your .pro
LIBS += -l<dll name>
LIBS += -l<dll name>
To copy to clipboard, switch view to plain text mode
then you should add
LIBS += -L"path/to/dir/with/dll/file"
LIBS += -L"path/to/dir/with/dll/file"
To copy to clipboard, switch view to plain text mode
in order to point the linker to directory where it should search for the referenced libraries.
Bookmarks