Browse Source

Try to ignore 5105 warning on MSVC build

rexim 4 years ago
parent
commit
05abace9a2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      build_msvc.bat

+ 1 - 1
build_msvc.bat

@@ -1,7 +1,7 @@
 @echo off
 rem launch this from msvc-enabled console
 
-set CFLAGS=/W4 /WX /std:c11 /wd4996 /FC /TC /Zi /nologo
+set CFLAGS=/W4 /WX /std:c11 /wd4996 /wd5105 /FC /TC /Zi /nologo
 set INCLUDES=/I dependencies\SDL2\include /I dependencies\GLFW\include /I dependencies\GLEW\include
 set LIBS=dependencies\SDL2\lib\x64\SDL2.lib ^
          dependencies\SDL2\lib\x64\SDL2main.lib ^