The generated cmake file - BoostDetectToolset-1.85.0.cmake includes the following:
92 - if((MSVC_VERSION GREATER 1929) AND (MSVC_VERSION LESS 1940))
Which is used to detect the vc143 toolset. I'm using the latest compiler for v143 and this version comes back as 1941 so I get an unsupported toolset error when trying to use boost in my cmake project.
If I change the above to:
92 - if((MSVC_VERSION GREATER 1929) AND (MSVC_VERSION LESS 1941))
And it works. I'm happy to raise a PR for this if people agree it's a good step forward.
The generated cmake file - BoostDetectToolset-1.85.0.cmake includes the following:
92 - if((MSVC_VERSION GREATER 1929) AND (MSVC_VERSION LESS 1940))
Which is used to detect the vc143 toolset. I'm using the latest compiler for v143 and this version comes back as 1941 so I get an unsupported toolset error when trying to use boost in my cmake project.
If I change the above to:
92 - if((MSVC_VERSION GREATER 1929) AND (MSVC_VERSION LESS 1941))
And it works. I'm happy to raise a PR for this if people agree it's a good step forward.