We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I try to disable the warning level at the file granularity.
Usecase: importing an external library with 1 or 2 cpp file, adding them directly in a project. But they had warning, simple solution would be:
<ClCompile Include="..\..\..\..\extern\fmt\src\format.cc"> <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Null_Release|x64'">TurnOffAllWarnings</WarningLevel> </ClCompile> <ClCompile Include="..\..\..\..\extern\fmt\src\os.cc"> <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Null_Release|x64'">TurnOffAllWarnings</WarningLevel> </ClCompile>
If I cannot do that on Sharpmake the currently the workaround are:
Far from ideal.
The text was updated successfully, but these errors were encountered:
We currently don't support per file options right now in Sharpmake and currently have no plans to implement this.
Sorry, something went wrong.
No branches or pull requests
Hello,
I try to disable the warning level at the file granularity.
Usecase: importing an external library with 1 or 2 cpp file, adding them directly in a project. But they had warning, simple solution would be:
If I cannot do that on Sharpmake the currently the workaround are:
Far from ideal.
The text was updated successfully, but these errors were encountered: