From 3c252b0234108b000e9559e8ccaf2c0629478419 Mon Sep 17 00:00:00 2001 From: okuoku Date: Fri, 3 Feb 2012 22:26:58 +0900 Subject: windows: Disable warning C4819 warning C4819: The file contains a character that cannot be represented in the current code page. --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index be47446..78428d9 100755 --- a/configure.py +++ b/configure.py @@ -103,7 +103,7 @@ else: if platform == 'windows': cflags = ['/nologo', '/Zi', '/W4', '/WX', '/wd4530', '/wd4100', '/wd4706', - '/wd4512', '/wd4800', '/wd4702', + '/wd4512', '/wd4800', '/wd4702', '/wd4819', '/D_CRT_SECURE_NO_WARNINGS', "/DNINJA_PYTHON=\"%s\"" % (options.with_python,)] ldflags = ['/DEBUG', '/libpath:$builddir'] -- cgit v0.12