1add_entrypoint_object(
2  strcat
3  SRCS
4    strcat.cpp
5  HDRS
6    strcat.h
7  DEPENDS
8    strcpy
9    string_h
10)
11
12add_entrypoint_object(
13  strcpy
14  SRCS
15    strcpy.cpp
16  HDRS
17    strcpy.h
18  DEPENDS
19    string_h
20)
21
22add_subdirectory(memory_utils)
23