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
The specified <PlatformToolset>v143</PlatformToolset> should be <PlatformToolset>ClangCl</PlatformToolset>. In addition, I get compilation error because the MSVC does not understand Clang specific compiler option to disable warnings like -Wno-c++98-compat.
Describe:
Configuring CMake for Clang under Windows with following command
When configuration finished, the generated project files (
.vcxproj
) contain wrong toolset:The specified
<PlatformToolset>v143</PlatformToolset>
should be<PlatformToolset>ClangCl</PlatformToolset>
. In addition, I get compilation error because the MSVC does not understand Clang specific compiler option to disable warnings like-Wno-c++98-compat
.It differs if configure with command:
This call generates correct
PlatformToolset
entry.Expected:
Two commands:
and
should generate absolutely identical project files to build 32-bit binaries and the
PlatformToolset
should beClangCl
The text was updated successfully, but these errors were encountered: