From f482f2901bb6db9c1c309a9cc4d84349bfb915ea Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sun, 18 Oct 2015 08:39:56 +0000 Subject: [PATCH] [LIBXML] - Fix VS2013 build svn path=/trunk/; revision=69589 --- reactos/lib/3rdparty/libxml2/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/lib/3rdparty/libxml2/CMakeLists.txt b/reactos/lib/3rdparty/libxml2/CMakeLists.txt index 2e12f74ebe7..90f949a8843 100644 --- a/reactos/lib/3rdparty/libxml2/CMakeLists.txt +++ b/reactos/lib/3rdparty/libxml2/CMakeLists.txt @@ -70,6 +70,8 @@ add_dependencies(libxml2 psdk) if(MSVC) # Formal parameter different from declaration add_target_compile_flags(libxml2 "/wd4101") + # Local variable initialized but not referenced + replace_compile_flags("/we4189" " ") else() add_target_compile_flags(libxml2 "-w") endif()