forked from OSchip/llvm-project
26 lines
395 B
CMake
26 lines
395 B
CMake
set (FILES
|
|
FileSpecTest.cpp
|
|
FileSystemTest.cpp
|
|
HostInfoTest.cpp
|
|
HostTest.cpp
|
|
MainLoopTest.cpp
|
|
SocketAddressTest.cpp
|
|
SocketTest.cpp
|
|
SymbolsTest.cpp
|
|
TaskPoolTest.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
|
|
lldbCore
|
|
lldbHost
|
|
)
|