You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
boost recipe needs to inject toolset version. In conan v1 there is tools.msvs_toolset. In conan v2 there is no public function. The closest function suitable for cross conan v1/v2 support is a private static method of MSBuildToolchain: _msvs_toolset. Current workaround in boost recipe is get this value from MSBuildToolchain(self).toolset since it's populated with value returned by _msvs_toolset(conanfile).
The text was updated successfully, but these errors were encountered:
boost recipe needs to inject toolset version. In conan v1 there is
tools.msvs_toolset
. In conan v2 there is no public function. The closest function suitable for cross conan v1/v2 support is a private static method ofMSBuildToolchain
:_msvs_toolset
. Current workaround in boost recipe is get this value fromMSBuildToolchain(self).toolset
since it's populated with value returned by_msvs_toolset(conanfile)
.The text was updated successfully, but these errors were encountered: