aboutsummaryrefslogtreecommitdiff
path: root/unittests/Host/CMakeLists.txt
blob: 7b2ce3bbfde509003e1f413a406bc3ebd3c25386 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
set (FILES
  FileSpecTest.cpp
  FileSystemTest.cpp
  MainLoopTest.cpp
  SocketAddressTest.cpp
  SocketTest.cpp
  SymbolsTest.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
  )