Skip to content

Commit

Permalink
[libc] Fix a typo in a CMakeLists.txt - replace DEPS with DEPENDS. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sivachandra authored Sep 12, 2023
1 parent f2ce618 commit c5ad6c7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libc/src/string/memory_utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ add_header_library(
x86_64/inline_memcpy.h
x86_64/inline_memmove.h
x86_64/inline_memset.h
DEPS
DEPENDS
libc.src.__support.common
libc.src.__support.CPP.bit
libc.src.__support.CPP.cstddef
Expand All @@ -44,39 +44,39 @@ add_header_library(
inline_memcpy
HDRS
inline_memcpy.h
DEPS
DEPENDS
.memory_utils
)

add_header_library(
inline_memmove
HDRS
inline_memmove.h
DEPS
DEPENDS
.memory_utils
)

add_header_library(
inline_memcmp
HDRS
inline_memcmp.h
DEPS
DEPENDS
.memory_utils
)

add_header_library(
inline_memset
HDRS
inline_memset.h
DEPS
DEPENDS
.memory_utils
)

add_header_library(
inline_bzero
HDRS
inline_bzero.h
DEPS
DEPENDS
.inline_memset
)

Expand Down

0 comments on commit c5ad6c7

Please sign in to comment.