I installed Boost-1.83 (already tested) and I am now trying to build quantlib 1.31.1 by following this tutorial https://www.quantlib.org/install/vc10.shtml. I made sure it is working properly in a separated project.
While building Quantlib, I got the errors
C:\softwares\QuantLib-1.31.1\test-suite\vpp.hpp(23,10): fatal error C1083: Impossible d'ouvrir le fichier include : 'boost/XXX/YYY.hpp' : No such file or directory (compilation du fichier source vpp.cpp)
each time a cpp file is dependant from a boost lib.
I setted up the properties as explained in the guide and tried several include paths (all ended up with the same issue).
in Properties>VC++ directories include directories: C:\softwares\boost_1_83_0;C:\softwares\boost_1_83_0\include\boost-1_83;$(IncludePath) Library directories: C:\softwares\boost_1_83_0\lib;$(LibraryPath)
I added both C:\softwares\boost_1_83_0 and C:\softwares\boost_1_83_0\include\boost-1_83 for test purpose only but my guess is that the 1st should be enough.
My problem looks similar to this one QuantLib Boost_1_72 VS2019 Build Error : "Cannot open include file boost/config.hpp: no such file or directory". It seems aszpa was able to fix it though, and not me. I obviously had a look and followed the solution proposed by Luigi.
Does anyone have an hint that could help me make everything works properly?
All the best
sum up of what I tried:
Follow the installation guide: https://www.quantlib.org/install/vc10.shtml
Luigi answer form the thread: QuantLib Boost_1_72 VS2019 Build Error : "Cannot open include file boost/config.hpp: no such file or directory"