Move some tests from instcombine to phase ordering. NFC.
[llvm-project.git] / lldb / tools / CMakeLists.txt
blob1585fd4dc4b9e9f898be816e491d1a5a66751720
1 add_subdirectory(argdumper)
2 add_subdirectory(driver)
3 add_subdirectory(intel-features)
5 # We want lldb-test to be built only when it's needed,
6 # i.e. if a target requires it as dependency. The typical
7 # example is `check-lldb`. So, we pass EXCLUDE_FROM_ALL here.
8 add_subdirectory(lldb-test EXCLUDE_FROM_ALL)
10 add_lldb_tool_subdirectory(lldb-instr)
11 add_lldb_tool_subdirectory(lldb-vscode)
13 if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
14   add_lldb_tool_subdirectory(darwin-debug)
15   if(NOT LLDB_USE_SYSTEM_DEBUGSERVER)
16     add_lldb_tool_subdirectory(debugserver)
17   endif()
18 endif()
20 if (LLDB_CAN_USE_LLDB_SERVER)
21   add_lldb_tool_subdirectory(lldb-server)
22 endif()