Warning disables #75

Merged
srishamharan merged 1 commits from ProjectWarningDisables into main 2022-10-01 19:44:17 +08:00
4 changed files with 22 additions and 3 deletions

View File

@ -67,9 +67,16 @@ project "SHADE_Application"
disablewarnings
{
"4251"
"4251",
"26812",
"26439",
"26451",
"26437",
"4275"
}
linkoptions { "-IGNORE:4006" }
warnings 'Extra'
filter "configurations:Debug"

View File

@ -14,7 +14,6 @@
#include <chrono>
#include <ratio>
#include <ctime>
#define SDL_HINT_VIDEO_FOREIGN_WINDOW_VULKAN 1
#include <SDL.h>
#include "Scripting/SHScriptEngine.h"

View File

@ -76,8 +76,15 @@ project "SHADE_Engine"
disablewarnings
{
"4251"
"4251",
"26812",
"26439",
"26451",
"26437",
"4275"
}
linkoptions { "-IGNORE:4006" }
defines
{

View File

@ -61,6 +61,12 @@ project "SHADE_Managed"
"MultiProcessorCompile"
}
disablewarnings
{
"4275"
}
dependson
{
"yaml-cpp",