You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
529 B
30 lines
529 B
7 months ago
|
set (FILES
|
||
|
ConnectionFileDescriptorTest.cpp
|
||
|
FileActionTest.cpp
|
||
|
FileSystemTest.cpp
|
||
|
FileTest.cpp
|
||
|
HostInfoTest.cpp
|
||
|
HostTest.cpp
|
||
|
MainLoopTest.cpp
|
||
|
NativeProcessProtocolTest.cpp
|
||
|
ProcessLaunchInfoTest.cpp
|
||
|
SocketAddressTest.cpp
|
||
|
SocketTest.cpp
|
||
|
SocketTestUtilities.cpp
|
||
|
)
|
||
|
|
||
|
if (CMAKE_SYSTEM_NAME MATCHES "Linux|Android")
|
||
|
list(APPEND FILES
|
||
|
linux/HostTest.cpp
|
||
|
linux/SupportTest.cpp
|
||
|
)
|
||
|
endif()
|
||
|
|
||
|
add_lldb_unittest(HostTests
|
||
|
${FILES}
|
||
|
LINK_LIBS
|
||
|
lldbHost
|
||
|
lldbUtilityHelpers
|
||
|
LLVMTestingSupport
|
||
|
)
|