Added NOMINMAX to SHADE_Managed

This commit is contained in:
Kah Wei 2022-09-13 20:28:34 +08:00
parent 9c833da88a
commit cfa12eb865
4 changed files with 6 additions and 10 deletions

View File

@ -39,6 +39,12 @@ project "SHADE_Managed"
"yaml-cpp", "yaml-cpp",
"imgui", "imgui",
"spdlog", "spdlog",
"SHADE_Engine"
}
defines
{
"NOMINMAX"
} }
flags flags

View File

@ -20,9 +20,6 @@ of DigiPen Institute of Technology is prohibited.
#include <algorithm> #include <algorithm>
// Project Headers // Project Headers
#include "Math.hxx" #include "Math.hxx"
// Undefinitions
#undef min
#undef max
namespace SHADE namespace SHADE
{ {

View File

@ -16,10 +16,6 @@ of DigiPen Institute of Technology is prohibited.
// Standard Libraries // Standard Libraries
#include <limits> #include <limits>
// Undefine
#undef min
#undef max
namespace SHADE namespace SHADE
{ {
///<summary> ///<summary>

View File

@ -20,9 +20,6 @@ of DigiPen Institute of Technology is prohibited.
#include <algorithm> #include <algorithm>
// Project Headers // Project Headers
#include "Math.hxx" #include "Math.hxx"
// Undefinitions
#undef min
#undef max
namespace SHADE namespace SHADE
{ {