brintos

brintos / llvm-project-archived public Read only

0
0
Text · 789 B · 0775f88 Raw
60 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  chmod7  ALIAS8  DEPENDS9    .${LIBC_TARGET_OS}.chmod10)11 12add_entrypoint_object(13  fchmodat14  ALIAS15  DEPENDS16    .${LIBC_TARGET_OS}.fchmodat17)18 19add_entrypoint_object(20  fchmod21  ALIAS22  DEPENDS23    .${LIBC_TARGET_OS}.fchmod24)25 26add_entrypoint_object(27  fstat28  ALIAS29  DEPENDS30    .${LIBC_TARGET_OS}.fstat31)32 33add_entrypoint_object(34  lstat35  ALIAS36  DEPENDS37    .${LIBC_TARGET_OS}.lstat38)39 40add_entrypoint_object(41  mkdir42  ALIAS43  DEPENDS44    .${LIBC_TARGET_OS}.mkdir45)46 47add_entrypoint_object(48  mkdirat49  ALIAS50  DEPENDS51    .${LIBC_TARGET_OS}.mkdirat52)53 54add_entrypoint_object(55  stat56  ALIAS57  DEPENDS58    .${LIBC_TARGET_OS}.stat59)60