From aa1d9b7d25382a52e4156ed9fae00e4b3d107ae7 Mon Sep 17 00:00:00 2001
From: "Sven M. Hallberg" <pesco@khjk.org>
Date: Tue, 8 Dec 2015 15:38:35 +0100
Subject: [PATCH] disable warning on windows about '..' in include paths

---
 tools/windows/clvars.bat | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tools/windows/clvars.bat b/tools/windows/clvars.bat
index 8e292268..6e338b78 100644
--- a/tools/windows/clvars.bat
+++ b/tools/windows/clvars.bat
@@ -4,6 +4,9 @@ REM Exports CLFLAGS
 REM Start with the most strict warning level
 set WARNINGS=-W4 -Wall -WX
 
+REM c4464 (relative include path contains '..')
+set WARNINGS=%WARNINGS% -wd4464
+
 REM c4457 (declaration shadowing function parameter)
 REM FIXME(windows) TODO(uucidl): remove occurence of c4457 and reactivate
 REM FIXME(windows) TODO(uucidl): remove occurence of c4456 and reactivate
-- 
GitLab