| add_object_library( |
| time_utils |
| SRCS |
| time_utils.cpp |
| HDRS |
| time_utils.h |
| DEPENDS |
| libc.include.errno |
| libc.include.time |
| libc.src.errno.__errno_location |
| ) |
| |
| add_entrypoint_object( |
| asctime |
| SRCS |
| asctime.cpp |
| HDRS |
| asctime.h |
| DEPENDS |
| .time_utils |
| libc.include.time |
| ) |
| |
| add_entrypoint_object( |
| asctime_r |
| SRCS |
| asctime_r.cpp |
| HDRS |
| asctime_r.h |
| DEPENDS |
| .time_utils |
| libc.include.time |
| ) |
| |
| add_entrypoint_object( |
| gmtime |
| SRCS |
| gmtime.cpp |
| HDRS |
| gmtime.h |
| DEPENDS |
| .time_utils |
| libc.include.time |
| ) |
| |
| add_entrypoint_object( |
| gmtime_r |
| SRCS |
| gmtime_r.cpp |
| HDRS |
| gmtime_r.h |
| DEPENDS |
| .time_utils |
| libc.include.time |
| ) |
| |
| add_entrypoint_object( |
| mktime |
| SRCS |
| mktime.cpp |
| HDRS |
| mktime.h |
| DEPENDS |
| .time_utils |
| libc.include.errno |
| libc.include.time |
| libc.src.errno.__errno_location |
| ) |