brintos

brintos / llvm-project-archived public Read only

0
0
Text · 724 B · 5591edd Raw
46 lines · plain
1set (FILES2  ConnectionFileDescriptorTest.cpp3  FileActionTest.cpp4  FileSystemTest.cpp5  FileTest.cpp6  HostInfoTest.cpp7  HostTest.cpp8  MainLoopTest.cpp9  JSONTransportTest.cpp10  NativeProcessProtocolTest.cpp11  PipeTest.cpp12  ProcessLaunchInfoTest.cpp13  SocketAddressTest.cpp14  SocketTest.cpp15  ThreadLauncherTest.cpp16  XMLTest.cpp17)18 19if (UNIX)20  list(APPEND FILES21    posix/HostTest.cpp22    posix/SupportTest.cpp23  )24endif()25 26if (LLDB_ENABLE_TERMIOS)27  list(APPEND FILES28    posix/TerminalTest.cpp29  )30endif()31 32add_lldb_unittest(HostTests33  ${FILES}34  LINK_LIBS35    lldbHost36    lldbCore37    lldbUtilityHelpers38    lldbHostHelpers39    LLVMTestingSupport40 41  LINK_COMPONENTS42    TargetParser43  )44 45add_subdirectory(common)46