Building MDd packages with Release build type
See original GitHub issueIssue Description
I’d like to build packages with MSVC in release mode but using MDd runtime. However, setting CONAN_VISUAL_RUNTIMES="MD,MDd"
and CONAN_BUILD_TYPES=Release
variables doesn’t allow that, as MDd runtime is filtered out for Release build type.
Could you please support such combination? Use case is building 3rd-partty libraries which are not intended to be stepped into when debugging.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Packaging Approaches — conan 1.56.0 documentation
It's possible that an existing build script is simultaneously building binaries for different configurations, like debug/release, or different architectures (32 ...
Read more >Create a NuGet package using MSBuild - Microsoft Learn
A detailed guide to the process of designing and creating a NuGet package using MSBuild, including key decision points like files and ...
Read more >Build Instructions - Google Git
Follow the build instructions in the SPIRV-Tools README.md file. You must also take note of the SPIRV-Tools install directory and pass it on...
Read more >USD/BUILDING.md at release · PixarAnimationStudios/USD
Users may specify libraries to build USD against and other build options by passing arguments when running cmake. Documentation for these arguments are...
Read more >Common Configuration - electron-builder
in the package.json file of your project using the build key on the top level: ... linux or windows ) or release-notes.md in...
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 Free
Top 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
Thanks, this code provides configurations which I wanted from
CONAN_VISUAL_RUNTIMES="MD,MDd" CONAN_BUILD_TYPES="Release,Debug"
E.g.
CONAN_VISUAL_RUNTIMES="MD,MDd" CONAN_BUILD_TYPES=Release CONAN_BUILD_YES_I_REALLY_MEAN_IT=1
(proposed variable name is just kidding)