Details
Description
I would like to run static analysis on my code to check for coding practices preceding review. I have worked around this issue by editing the project file with the following snippet:
<PropertyGroup Condition="'$(Language)'=='C++'">
<CAExcludePath>$(QTDIR)\include;.\GeneratedFiles;$(CAExcludePath)</CAExcludePath>
</PropertyGroup>
Seems like the desired behavior for most use cases.