gast128

Results 4 comments of gast128

As of writing msvc v19. latest with Boost does not work. Many / all of Boost's top headers include other headers (e.g. boost/function.hpp).

I am trying to get this working but it fails on Windows with VS2022 after numerous attempts. We have downloaded Boost 1.86 in separate folder ('D:\Develop\SDK and Libraries\boost\1_86_0') and build...

Thx for then answer. We build without install option. If I specify the following: `b2 install --prefix=.\stage toolset=msvc-14.3 variant=debug threading=multi link=shared address-model=64 define=_BIND_TO_CURRENT_VCLIBS_VERSION ` and then `set(Boost_DIR "D:/Develop/SDK and Libraries/boost/1_86_0/stage")...

Yes this works. In retrospect the stage directory worked also. So indeed if PREFIX was 'D:\Temp' one needs in CMakeLists.txt: `set(BOOST_ROOT "D:/Temp")` or `set(Boost_DIR "D:/Temp/lib/cmake/Boost-1.86.0")` Thx. Perhaps somebody could document...