Author: akhaldi
Date: Sun Mar 2 20:41:36 2014
New Revision: 62388
URL:
http://svn.reactos.org/svn/reactos?rev=62388&view=rev
Log:
[CMAKE]
* Disable the MS extensions warning in Clang build.
Modified:
trunk/reactos/cmake/gcc.cmake
Modified: trunk/reactos/cmake/gcc.cmake
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/gcc.cmake?rev=62388&…
==============================================================================
--- trunk/reactos/cmake/gcc.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/gcc.cmake [iso-8859-1] Sun Mar 2 20:41:36 2014
@@ -33,6 +33,7 @@
if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
add_compile_flags_language("-std=gnu89" "C")
+ add_compile_flags("-Wno-microsoft")
endif()
add_compile_flags_language("-fno-rtti -fno-exceptions" "CXX")