brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · b5d7b67 Raw
81 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  cfgetispeed7  ALIAS8    DEPENDS9      .${LIBC_TARGET_OS}.cfgetispeed10)11 12add_entrypoint_object(13  cfsetispeed14  ALIAS15    DEPENDS16      .${LIBC_TARGET_OS}.cfsetispeed17)18 19add_entrypoint_object(20  cfgetospeed21  ALIAS22    DEPENDS23      .${LIBC_TARGET_OS}.cfgetospeed24)25 26add_entrypoint_object(27  cfsetospeed28  ALIAS29    DEPENDS30      .${LIBC_TARGET_OS}.cfsetospeed31)32 33add_entrypoint_object(34  tcgetsid35  ALIAS36    DEPENDS37      .${LIBC_TARGET_OS}.tcgetsid38)39 40add_entrypoint_object(41  tcdrain42  ALIAS43    DEPENDS44      .${LIBC_TARGET_OS}.tcdrain45)46 47add_entrypoint_object(48  tcflow49  ALIAS50    DEPENDS51      .${LIBC_TARGET_OS}.tcflow52)53 54add_entrypoint_object(55  tcflush56  ALIAS57    DEPENDS58      .${LIBC_TARGET_OS}.tcflush59)60 61add_entrypoint_object(62  tcsendbreak63  ALIAS64    DEPENDS65      .${LIBC_TARGET_OS}.tcsendbreak66)67 68add_entrypoint_object(69  tcgetattr70  ALIAS71    DEPENDS72      .${LIBC_TARGET_OS}.tcgetattr73)74 75add_entrypoint_object(76  tcsetattr77  ALIAS78    DEPENDS79      .${LIBC_TARGET_OS}.tcsetattr80)81