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.
2 parents 6aa67af + d1c1af6 commit 8adab4fCopy full SHA for 8adab4f
lldb/unittests/Protocol/CMakeLists.txt
@@ -1,6 +1,13 @@
1
-add_lldb_unittest(ProtocolTests
+set(PROTOCOL_TEST_SOURCES
2
ProtocolMCPTest.cpp
3
- ProtocolMCPServerTest.cpp
+)
4
+
5
+if(NOT WIN32)
6
+ list(APPEND PROTOCOL_TEST_SOURCES ProtocolMCPServerTest.cpp)
7
+endif()
8
9
+add_lldb_unittest(ProtocolTests
10
+ ${PROTOCOL_TEST_SOURCES}
11
12
LINK_LIBS
13
lldbCore
@@ -9,4 +16,4 @@ add_lldb_unittest(ProtocolTests
16
lldbPluginPlatformMacOSX
17
lldbPluginProtocolServerMCP
18
LLVMTestingSupport
- )
19
0 commit comments