Author: hbelusca
Date: Wed May 29 00:44:18 2013
New Revision: 59100
URL:
http://svn.reactos.org/svn/reactos?rev=59100&view=rev
Log:
Let's try to fix GCC builds on Linux bots.
Modified:
trunk/reactos/win32ss/user/consrv/CMakeLists.txt
Modified: trunk/reactos/win32ss/user/consrv/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/consrv/CMakeL…
==============================================================================
--- trunk/reactos/win32ss/user/consrv/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/consrv/CMakeLists.txt [iso-8859-1] Wed May 29 00:44:18
2013
@@ -36,11 +36,11 @@
# FIXME:
http://www.cmake.org/Bug/view.php?id=12998
if(MSVC)
## NOTE: No need to specify it as we use MSVC :)
- #add_target_compile_flags(consrv "/Ze")
- ##set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS "/Ze")
+ ##add_target_compile_flags(consrv "/Ze")
+ #set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS "/Ze")
else()
- add_target_compile_flags(consrv "-fms-extensions")
- #set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS
"-fms-extensions")
+ #add_target_compile_flags(consrv "-fms-extensions")
+ set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS
"-fms-extensions")
endif()
target_link_libraries(consrv win32ksys ${PSEH_LIB} uuid) # win32ksys because of
NtUser...()