if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${LIBC_TARGET_OS})
  add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${LIBC_TARGET_OS})
endif()

add_header_library(
  time_constants
  HDRS
    time_constants.h
  DEPENDS
    libc.include.time
    libc.src.__support.CPP.array
    libc.src.__support.CPP.string_view
    libc.hdr.types.time_t
)

add_object_library(
  time_utils
  SRCS
    time_utils.cpp
  HDRS
    time_utils.h
  DEPENDS
    libc.include.time
    libc.src.__support.CPP.limits
    libc.src.errno.errno
    .time_constants
    libc.hdr.types.time_t
    libc.hdr.types.size_t
    libc.hdr.types.struct_tm
)

add_entrypoint_object(
  asctime
  SRCS
    asctime.cpp
  HDRS
    asctime.h
  DEPENDS
    .time_utils
    .time_constants
    libc.include.time
    libc.hdr.types.struct_tm
)

add_entrypoint_object(
  asctime_r
  SRCS
    asctime_r.cpp
  HDRS
    asctime_r.h
  DEPENDS
    .time_utils
    .time_constants
    libc.include.time
    libc.hdr.types.struct_tm
)

add_entrypoint_object(
  ctime
  SRCS
    ctime.cpp
  HDRS
    ctime.h
  DEPENDS
    .time_utils
    .time_constants
    libc.hdr.types.time_t
    libc.include.time
)

add_entrypoint_object(
  ctime_r
  SRCS
    ctime_r.cpp
  HDRS
    ctime_r.h
  DEPENDS
    .time_utils
    .time_constants
    libc.hdr.types.time_t
    libc.include.time
)

add_entrypoint_object(
  difftime
  SRCS
    difftime.cpp
  HDRS
    difftime.h
  DEPENDS
    libc.include.time
    libc.hdr.types.time_t
)

add_entrypoint_object(
  gmtime
  SRCS
    gmtime.cpp
  HDRS
    gmtime.h
  DEPENDS
    .time_utils
    libc.include.time
    libc.hdr.types.time_t
    libc.hdr.types.struct_tm
)

add_entrypoint_object(
  gmtime_r
  SRCS
    gmtime_r.cpp
  HDRS
    gmtime_r.h
  DEPENDS
    .time_utils
    libc.include.time
    libc.hdr.types.time_t
    libc.hdr.types.struct_tm
)

add_entrypoint_object(
  mktime
  SRCS
    mktime.cpp
  HDRS
    mktime.h
  DEPENDS
    .time_utils
    .time_constants
    libc.include.time
    libc.src.errno.errno
    libc.hdr.types.time_t
    libc.hdr.types.struct_tm
)

add_entrypoint_object(
  time
  SRCS
    time.cpp
  HDRS
    time_func.h
  DEPENDS
    libc.hdr.time_macros
    libc.hdr.types.time_t
    libc.src.__support.time.clock_gettime
    libc.src.errno.errno
    libc.hdr.types.struct_tm
)

add_entrypoint_object(
  timespec_get
  ALIAS
  DEPENDS
    .${LIBC_TARGET_OS}.timespec_get
)

add_entrypoint_object(
  clock
  ALIAS
  DEPENDS
    .${LIBC_TARGET_OS}.clock
)

add_entrypoint_object(
  nanosleep
  ALIAS
  DEPENDS
    .${LIBC_TARGET_OS}.nanosleep
)

add_entrypoint_object(
  clock_gettime
  ALIAS
  DEPENDS
    .${LIBC_TARGET_OS}.clock_gettime
)

add_entrypoint_object(
  gettimeofday
  ALIAS
  DEPENDS
    .${LIBC_TARGET_OS}.gettimeofday
)

add_entrypoint_object(
  clock_getres
  ALIAS
  DEPENDS
    .${LIBC_TARGET_OS}.clock_getres
)
