set(UTILS_INC_PATH 
    ""
    CACHE PATH
    "path to the utils include directory"
)

set(UTILS_SRC_PATH 
    ""
    CACHE PATH
    "path to the utils source directory"
)

list(APPEND UTILS_INC_PATH
    ${CMAKE_SOURCE_DIR}/src/utils/dynamic_array
    ${CMAKE_SOURCE_DIR}/src/utils/log
    ${CMAKE_SOURCE_DIR}/src/utils/timer
)

list(APPEND UTILS_SRC_PATH
    ${CMAKE_SOURCE_DIR}/src/utils/dynamic_array/dynamic_array.c
    ${CMAKE_SOURCE_DIR}/src/utils/timer/os_timer_inf.c
)

message(STATUS "UTILS_INC_PATH: ${UTILS_INC_PATH}")
message(STATUS "UTILS_SRC_PATH: ${UTILS_SRC_PATH}")
