We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c0371f commit 08d68a8Copy full SHA for 08d68a8
src/Project.cpp
@@ -668,7 +668,7 @@ void Project::writeProperties(wofstream &file) const
668
file << " <ProjectName>" << fullName() << "</ProjectName>" << endl;
669
file << " <ProjectGuid>{" << guid() << "}</ProjectGuid>" << endl;
670
file << " <Keyword>" << _options.platform() << "Proj</Keyword>" << endl;
671
- if (_options.enableAsan)
+ if (_options.enableAsan && !_options.isStaticBuild)
672
file << " <EnableASAN Condition=\"'$(Configuration)'=='Debug'\">true</EnableASAN>" << endl;
673
file << " </PropertyGroup>" << endl;
674
file << " <Import Project=\"$(VCTargetsPath)\\Microsoft.Cpp.Default.props\" />" << endl;
0 commit comments