Files
clang-p2996/lldb/unittests/Thread/CMakeLists.txt
David Spickett f54249e79a [lldb][test] Link to PlatformWindows in thread tests
Clearly I need my eyes checked, it wasn't linking to a non-existent
library at all, I had the name wrong.
2023-12-21 14:07:27 +00:00

22 lines
445 B
CMake

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}
)