qt - Problem with linking -
qt - Problem with linking -
i made custom library , compiled dll (qustom.dll).
now want compile project using dll.
what did import header files in project , add together line in .pro file
libs += -lqustom
but "error: cannot find -lqustom"
also tried
libs += qustom.dll
and
libs += -libqustom.a
qustom.dll in project directory
also tried
other_files += \ qextserialport1.dll
but didn't work either
am missing here?
missing path perhaps? -l/path/to/dlls -ldllname
qt plays nicely cmake. utilize , never dependency/path headaches more.
qt qt4
Comments
Post a Comment