brintos

brintos / llvm-project-archived public Read only

0
0
Text · 445 B · 8fc44da Raw
22 lines · plain
1if (CMAKE_SYSTEM_NAME MATCHES "Windows")2  list(APPEND LLDB_WINDOWS_LIBS lldbPluginPlatformWindows)3  list(APPEND LLDB_WINDOWS_LIBS lldbPluginProcessWindowsCommon)4endif()5 6add_lldb_unittest(ThreadTests7  ThreadTest.cpp8 9  LINK_LIBS10      lldbCore11      lldbHost12      lldbTarget13      lldbSymbol14      lldbUtility15      lldbUtilityHelpers16      lldbInterpreter17      lldbBreakpoint18      lldbPluginPlatformLinux19      ${LLDB_WINDOWS_LIBS}20  )21 22