Author: hbelusca
Date: Thu Apr 18 21:19:09 2013
New Revision: 58782
URL:
http://svn.reactos.org/svn/reactos?rev=58782&view=rev
Log:
[CMAKE-scripts]
Indentation fixes, no code changes.
Modified:
trunk/reactos/cmake/CMakeMacros.cmake
trunk/reactos/cmake/config-amd64.cmake
trunk/reactos/cmake/config-arm.cmake
trunk/reactos/cmake/config.cmake
trunk/reactos/cmake/midl-support.cmake
trunk/reactos/cmake/widl-support.cmake
Modified: trunk/reactos/cmake/CMakeMacros.cmake
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/CMakeMacros.cmake?re…
==============================================================================
--- trunk/reactos/cmake/CMakeMacros.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/CMakeMacros.cmake [iso-8859-1] Thu Apr 18 21:19:09 2013
@@ -54,26 +54,26 @@
endfunction()
function(add_link)
- cmake_parse_arguments(_LINK "MINIMIZE"
"NAME;PATH;CMD_LINE_ARGS;ICON;GUID" "" ${ARGN})
+ cmake_parse_arguments(_LINK "MINIMIZE"
"NAME;PATH;CMD_LINE_ARGS;ICON;GUID" "" ${ARGN})
if(NOT _LINK_NAME OR NOT _LINK_PATH)
message(FATAL_ERROR "You must provide name and path")
endif()
- if(_LINK_CMD_LINE_ARGS)
- set(_LINK_CMD_LINE_ARGS -c ${_LINK_CMD_LINE_ARGS})
- endif()
-
- if(_LINK_ICON)
- set(_LINK_ICON -i ${_LINK_ICON})
- endif()
-
- if(_LINK_GUID)
- set(_LINK_GUID -g ${_LINK_GUID})
- endif()
-
- if(_LINK_MINIMIZE)
- set(_LINK_MINIMIZE "-m")
- endif()
+ if(_LINK_CMD_LINE_ARGS)
+ set(_LINK_CMD_LINE_ARGS -c ${_LINK_CMD_LINE_ARGS})
+ endif()
+
+ if(_LINK_ICON)
+ set(_LINK_ICON -i ${_LINK_ICON})
+ endif()
+
+ if(_LINK_GUID)
+ set(_LINK_GUID -g ${_LINK_GUID})
+ endif()
+
+ if(_LINK_MINIMIZE)
+ set(_LINK_MINIMIZE "-m")
+ endif()
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_LINK_NAME}.lnk
Modified: trunk/reactos/cmake/config-amd64.cmake
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/config-amd64.cmake?r…
==============================================================================
--- trunk/reactos/cmake/config-amd64.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/config-amd64.cmake [iso-8859-1] Thu Apr 18 21:19:09 2013
@@ -28,7 +28,7 @@
set(GDB FALSE CACHE BOOL
"Whether to compile for debugging with GDB.
-If you don't use GDB, don't enable this.")
+If you don't use GDB, don't enable this.")
set(_WINKD_ TRUE CACHE BOOL
"Whether to compile with the KD protocol.")
Modified: trunk/reactos/cmake/config-arm.cmake
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/config-arm.cmake?rev…
==============================================================================
--- trunk/reactos/cmake/config-arm.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/config-arm.cmake [iso-8859-1] Thu Apr 18 21:19:09 2013
@@ -29,7 +29,7 @@
set(GDB FALSE CACHE BOOL
"Whether to compile for debugging with GDB.
-If you don't use GDB, don't enable this.")
+If you don't use GDB, don't enable this.")
set(_WINKD_ TRUE CACHE BOOL
"Whether to compile with the KD protocol.")
Modified: trunk/reactos/cmake/config.cmake
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/config.cmake?rev=587…
==============================================================================
--- trunk/reactos/cmake/config.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/config.cmake [iso-8859-1] Thu Apr 18 21:19:09 2013
@@ -26,7 +26,7 @@
set(GDB FALSE CACHE BOOL
"Whether to compile for debugging with GDB.
-If you don't use GDB, don't enable this.")
+If you don't use GDB, don't enable this.")
if(CMAKE_BUILD_TYPE STREQUAL "Release")
set(DBG FALSE CACHE BOOL
Modified: trunk/reactos/cmake/midl-support.cmake
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/midl-support.cmake?r…
==============================================================================
--- trunk/reactos/cmake/midl-support.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/midl-support.cmake [iso-8859-1] Thu Apr 18 21:19:09 2013
@@ -107,7 +107,7 @@
add_library(${_target} ${_iid_sources})
# for wtypes.h
- add_dependencies(${_target} psdk)
+ add_dependencies(${_target} psdk)
set_target_properties(${_target} PROPERTIES EXCLUDE_FROM_ALL TRUE)
endfunction()
Modified: trunk/reactos/cmake/widl-support.cmake
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/widl-support.cmake?r…
==============================================================================
--- trunk/reactos/cmake/widl-support.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/widl-support.cmake [iso-8859-1] Thu Apr 18 21:19:09 2013
@@ -108,7 +108,7 @@
list(APPEND IID_SOURCES ${NAME}_i.c)
endforeach()
add_library(${TARGET} ${IID_SOURCES})
- add_dependencies(${TARGET} psdk)
+ add_dependencies(${TARGET} psdk)
set_target_properties(${TARGET} PROPERTIES EXCLUDE_FROM_ALL TRUE)
endfunction()