summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorokuoku <mjt@cltn.org>2012-02-03 13:26:58 (GMT)
committerokuoku <mjt@cltn.org>2012-02-03 13:26:58 (GMT)
commit3c252b0234108b000e9559e8ccaf2c0629478419 (patch)
tree7d53a1a4edffad14eb92d168ae4ba6b99d9763b8 /configure.py
parent717ccbea94a31621918ac508f98e061e9bd82469 (diff)
downloadNinja-3c252b0234108b000e9559e8ccaf2c0629478419.zip
Ninja-3c252b0234108b000e9559e8ccaf2c0629478419.tar.gz
Ninja-3c252b0234108b000e9559e8ccaf2c0629478419.tar.bz2
windows: Disable warning C4819
warning C4819: The file contains a character that cannot be represented in the current code page.
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
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']