I am new to working with Qt in windows environment and I am facing issues in linking dynamic libraries for the project.
I built boost and quantlib as dynamic libraries and included in the project, but the application is throwing the error:" LNK1104: cannot open file 'QuantLib-vc141-mt.lib'"
Here is my .pro file,
INCLUDEPATH += "C:/Users/som/Desktop/boost_1_68_0" \#Boost
"C:/Users/som/Desktop/QuantLib-master" #Quantlib
LIBS += -LC:/Users/som/Desktop/QuantLib-master/lib/ #QuantLib
LIBS += -LC:/Users/som/Desktop/boost_1_68_0/stage/lib/ #Boost
LIBS += -lQuantLib-vc141-mt
LIBS += -lboost_date_time-vc141-mt-x32-1_68
The quantlib library directory contains QuantLib-vc141-mt.dll and lQuantLib-vc141-mt-gd.dll files.