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(ThreadTests 7 ThreadTest.cpp 8 9 LINK_LIBS 10 lldbCore 11 lldbHost 12 lldbTarget 13 lldbSymbol 14 lldbUtility 15 lldbUtilityHelpers 16 lldbInterpreter 17 lldbBreakpoint 18 lldbPluginPlatformLinux 19 ${LLDB_WINDOWS_LIBS} 20 ) 21 22