Author: jgardou
Date: Wed Nov 3 16:59:50 2010
New Revision: 49460
URL:
http://svn.reactos.org/svn/reactos?rev=49460&view=rev
Log:
[CMAKE]
cmake doesn't like braces
Modified:
branches/cmake-bringup/cmake/Modules/Platform/Windows-cl.cmake
Modified: branches/cmake-bringup/cmake/Modules/Platform/Windows-cl.cmake
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/cmake/Modules/Pla…
==============================================================================
--- branches/cmake-bringup/cmake/Modules/Platform/Windows-cl.cmake [iso-8859-1]
(original)
+++ branches/cmake-bringup/cmake/Modules/Platform/Windows-cl.cmake [iso-8859-1] Wed Nov 3
16:59:50 2010
@@ -207,7 +207,7 @@
SET(CMAKE_BUILD_TYPE_INIT Debug)
- IF($ENV{DDKBUILDENV} OR (NOT CMAKE_CROSSCOMPILING))
+ IF(ENV{DDKBUILDENV} OR NOT CMAKE_CROSSCOMPILING)
SET (CMAKE_CXX_FLAGS_DEBUG_INIT "/D_DEBUG /MTd /Zi /Ob0 /Od")
SET (CMAKE_C_FLAGS_DEBUG_INIT "/D_DEBUG /MD /Zi /Ob0 /Od")
ELSE()