We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b223aeb commit 513c215Copy full SHA for 513c215
lldb/unittests/Thread/CMakeLists.txt
@@ -1,3 +1,8 @@
1
+if (CMAKE_SYSTEM_NAME MATCHES "Windows")
2
+ list(APPEND LLDB_WINDOWS_LIBS lldbPluginProcessWindows)
3
+ list(APPEND LLDB_WINDOWS_LIBS lldbPluginProcessWindowsCommon)
4
+endif()
5
+
6
add_lldb_unittest(ThreadTests
7
ThreadTest.cpp
8
@@ -11,7 +16,6 @@ add_lldb_unittest(ThreadTests
11
16
lldbInterpreter
12
17
lldbBreakpoint
13
18
lldbPluginPlatformLinux
14
- lldbPluginPlatformWindows
15
- lldbPluginProcessWindowsCommon
19
+ ${LLDB_WINDOWS_LIBS}
20
)
21
0 commit comments