From 02baa63e9d4d250a2e781a15d9de7117877218f7 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Tue, 11 Dec 2012 11:04:27 +0000 Subject: [PATCH] * Allow warnings for all source files here. svn path=/trunk/; revision=57875 --- reactos/dll/win32/xmllite/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/xmllite/CMakeLists.txt b/reactos/dll/win32/xmllite/CMakeLists.txt index 1726e42adf0..cc6e7f3c6ef 100644 --- a/reactos/dll/win32/xmllite/CMakeLists.txt +++ b/reactos/dll/win32/xmllite/CMakeLists.txt @@ -15,7 +15,7 @@ list(APPEND SOURCE if(NOT MSVC) # FIXME: http://www.cmake.org/Bug/view.php?id=12998 #allow_warnings(xmllite) - set_source_files_properties(reader.c PROPERTIES COMPILE_FLAGS "-Wno-error") + set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS "-Wno-error") endif() add_library(xmllite SHARED ${SOURCE})