-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Actions] [Warning Reporting] Adding Warning Reporting to be built in…
… Actions for Windows (#1416) * Adding warning reporting project to be built in actions on Windows * Adding WarningReportingCategories.cpp to the core project file * Adding an empty define of ANNOUNCE_WARNING for warning free builds * Adding preprocessor define in the command line * Update Build Thunder on Windows.yml * Trying a different project name * Adding a folder of core * Changing the syntax to match Windows * Adding bridge project to be build as well to see if it builds dependences first * Adding $(DefineConstants) to make sure we are not clearing them while adding warning reporting * Trying to build just bridge * Trying to build the whole solution with msbuild * Trying a different approach with setting env variables and using devenv since it restores packages * Building once again with devenv but setting env variable beforehand * Changing the name to be more generic since it can be used for more things in the future * Preparing for a pull request, cleaning everything up * Removing variables which are no longer needed * Adding props to enable setting the env variable in Visual Studio * Making sure by default the macro value is empty to override the other one * Adding a separate variable for console builds * Using the new console variable since it was clashing with the Visual Studio one --------- Co-authored-by: Pierre Wielders <[email protected]>
- Loading branch information
1 parent
469d6c3
commit 4dea291
Showing
6 changed files
with
49 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ImportGroup Label="PropertySheets" /> | ||
<PropertyGroup Label="UserMacros"> | ||
<CoreDefines /> | ||
</PropertyGroup> | ||
<PropertyGroup /> | ||
<ItemDefinitionGroup /> | ||
<ItemGroup> | ||
<BuildMacro Include="CoreDefines"> | ||
<Value>$(CoreDefines)</Value> | ||
</BuildMacro> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ImportGroup Label="PropertySheets" /> | ||
<PropertyGroup Label="UserMacros"> | ||
<CoreDefines>__CORE_WARNING_REPORTING__</CoreDefines> | ||
</PropertyGroup> | ||
<PropertyGroup /> | ||
<ItemDefinitionGroup /> | ||
<ItemGroup> | ||
<BuildMacro Include="CoreDefines"> | ||
<Value>$(CoreDefines)</Value> | ||
</BuildMacro> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters