Suppress VC2013 warnings.

Update AppVeyor script.
This commit is contained in:
Syoyo Fujita
2016-04-19 13:11:55 +09:00
parent f4695de408
commit a55247574c
6 changed files with 40 additions and 41 deletions

View File

@@ -1,18 +0,0 @@
# build.ninja
cc = clang
cxx = clang++
cflags = -Werror -Weverything
cxxflags = -Werror -Weverything
#cflags = -O2
#cxxflags = -O2
rule compile
command = $cxx $cxxflags -c $in -o $out
rule link
command = $cxx $in -o $out
build loader_example.o: compile loader_example.cc
build loader_example: link loader_example.o
default loader_example