Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Oct 9, 2018
1 parent 59d1289 commit 1a5329b
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions CMake/AbseilHelpers.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@ 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
PUBLIC_INCLUDE_DIRS
PUBLIC_LIBRARIES
PRIVATE_COMPILE_FLAGS
PRIVATE_INCLUDE_DIRS
)
)
cmake_parse_arguments(ABSL_LIB
"${options}"
"${oneValueArgs}"
Expand Down Expand Up @@ -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})

Expand Down

0 comments on commit 1a5329b

Please sign in to comment.