I am using visual studio 2019 with cmake project. When opening cmake settings UI in visual studio IDE, it shows a list of toolset for a C++ project.
From the list of toolsets, I have msvc_x64
and msvc_x64_x64
. I want to build on native x64, so I can simply select msvc_x64.
But why there is two toolset named x64 and x64_x64?
Is it the same thing or they are maintaining two names for some sort of backward compatibility?
As per docs, I can understand the naming conventions for toolsets such as msvc_x86_x64, amd64, x64_arm etc.. I would like to learn about x64 and x64_x64 and why these two exist?
Is there any difference between two ? If so can I get some documentation about it?