Skip to content

Commit

Permalink
build: Small fixes
Browse files Browse the repository at this point in the history
Add missing include.
Absolute path in ScriptInterface.vcxproj.
Disable 4005 warning for VS.
  • Loading branch information
vasylskorych committed Feb 23, 2024
1 parent 94263a6 commit 87d3265
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DyssolConsole/DyssolConsole.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
<ProjectReference Include="$(SolutionDir)SimulatorCore\SimulatorCore.vcxproj">
<Project>{a631849a-0b28-4982-9a8d-9e4921a2a84c}</Project>
</ProjectReference>
<ProjectReference Include="..\ScriptInterface\ScriptInterface.vcxproj">
<ProjectReference Include="$(SolutionDir)ScriptInterface\ScriptInterface.vcxproj">
<Project>{0736ddb9-c29b-4dea-8e9a-6feffed8cfb6}</Project>
</ProjectReference>
</ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions MaterialsDatabase/DefinesMDB.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <utility>
#include <vector>
#include <string>
#include <limits>

//////////////////////////////////////////////////////////////////////////
/// Default and service values
Expand Down
2 changes: 1 addition & 1 deletion Utilities/DisableWarningHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <CodeAnalysis/Warnings.h>
#define PRAGMA_WARNING_PUSH __pragma(warning(push))
#define PRAGMA_WARNING_POP __pragma(warning(pop))
#define PRAGMA_WARNING_DISABLE __pragma(warning(disable : 4244 4267 4700 ALL_CODE_ANALYSIS_WARNINGS))
#define PRAGMA_WARNING_DISABLE __pragma(warning(disable : 4005 4244 4267 4700 ALL_CODE_ANALYSIS_WARNINGS))
#else
#define PRAGMA_WARNING_PUSH
#define PRAGMA_WARNING_POP
Expand Down

0 comments on commit 87d3265

Please sign in to comment.