Support toolsets for Visual Studio
See original GitHub issueHi,
I would expect ConanMultiPackager
to have Visual Studio toolset option.
Something like this:
builder = ConanMultiPackager(username="username",
channel="stable",
visual_versions=["15"],
visual_toolsets=["v140", "v140_clang_c2"])
Could you suggest a workaround or implement this option?
Issue Analytics
- State:
- Created 6 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
What is "Platform Toolset" setting in visual studio project
It is an MSBuild property that controls the specific version of the platform toolset that you want to use.
Read more >How to: Modify the Target Framework and Platform Toolset ...
To change the platform toolset · In Visual Studio, on the menu bar, select Project > Properties to open your project Property Pages...
Read more >Visual Studio toolset setup - Microsoft Game Development Kit
Lists the required Visual Studio and Visual Studio Build Tools components for building without installing the Microsoft Game Development ...
Read more >Technical Support & FAQs | Visual Studio IDE - Microsoft
Get help with common Visual Studio installation issues, download and installation, licensing and purchasing, and support policies.
Read more >Use the Microsoft C++ toolset from the command line
A platform toolset has all the C and C++ tools for a specific Visual Studio version. The tools include the C/C++ compilers, linkers,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
We could introduce it and generate the corresponding builds because conan supports the visual toolsets from 0.29, but it only makes sense to specify toolsets for a specific visual version. So probably the parameter should be a dictionary:
visual_toolsets={"15": ["v140", "v140_clang_c2"]}
And for the corresponding environment variable, we could think in a text representation.
I’m eager for this functionality 😃