brintos

brintos / llvm-project-archived public Read only

0
0
Text · 392 B · 8ea6752 Raw
25 lines · plain
1if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${LIBC_TARGET_OS})2  add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${LIBC_TARGET_OS})3endif()4 5add_entrypoint_object(6  utimes7  ALIAS8  DEPENDS9    .${LIBC_TARGET_OS}.utimes10)11 12add_entrypoint_object(13  setitimer14  ALIAS15  DEPENDS16  .${LIBC_TARGET_OS}.setitimer 17)18 19add_entrypoint_object(20  getitimer21  ALIAS22  DEPENDS23    .${LIBC_TARGET_OS}.getitimer 24)25