22 lines
445 B
Text
22 lines
445 B
Text
|
if (CMAKE_SYSTEM_NAME MATCHES "Windows")
|
||
|
list(APPEND LLDB_WINDOWS_LIBS lldbPluginPlatformWindows)
|
||
|
list(APPEND LLDB_WINDOWS_LIBS lldbPluginProcessWindowsCommon)
|
||
|
endif()
|
||
|
|
||
|
add_lldb_unittest(ThreadTests
|
||
|
ThreadTest.cpp
|
||
|
|
||
|
LINK_LIBS
|
||
|
lldbCore
|
||
|
lldbHost
|
||
|
lldbTarget
|
||
|
lldbSymbol
|
||
|
lldbUtility
|
||
|
lldbUtilityHelpers
|
||
|
lldbInterpreter
|
||
|
lldbBreakpoint
|
||
|
lldbPluginPlatformLinux
|
||
|
${LLDB_WINDOWS_LIBS}
|
||
|
)
|
||
|
|