From 1a5329bd672579e9c2026bfc8916dd5387fedbf1 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Tue, 9 Oct 2018 09:12:38 +0200 Subject: [PATCH] Fix indentation --- CMake/AbseilHelpers.cmake | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/CMake/AbseilHelpers.cmake b/CMake/AbseilHelpers.cmake index cd199227097..711a1a1eaf4 100644 --- a/CMake/AbseilHelpers.cmake +++ b/CMake/AbseilHelpers.cmake @@ -38,11 +38,11 @@ set(ABSL_IDE_FOLDER Abseil) function(absl_library) set(options DISABLE_INSTALL # keep that in case we want to support installation one day - ) + ) set(oneValueArgs TARGET EXPORT_NAME - ) + ) set(multiValueArgs SOURCES PUBLIC_HEADER @@ -50,7 +50,7 @@ function(absl_library) PUBLIC_LIBRARIES PRIVATE_COMPILE_FLAGS PRIVATE_INCLUDE_DIRS - ) + ) cmake_parse_arguments(ABSL_LIB "${options}" "${oneValueArgs}" @@ -91,31 +91,29 @@ function(absl_library) endif() endfunction() - - # # header only virtual target creation # function(absl_header_library) set(options DISABLE_INSTALL # keep that in case we want to support installation one day - ) + ) set(oneValueArgs TARGET EXPORT_NAME - ) + ) set(multiValueArgs PUBLIC_HEADER PUBLIC_INCLUDE_DIRS PUBLIC_LIBRARIES PRIVATE_COMPILE_FLAGS - ) + ) cmake_parse_arguments(ABSL_HO_LIB "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} - ) + ) set(_NAME ${ABSL_HO_LIB_TARGET})