comparison lldb/tools/CMakeLists.txt @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children c4bab56944e8
comparison
equal deleted inserted replaced
147:c2174574ed3a 150:1d019706d866
1 add_subdirectory(argdumper)
2 add_subdirectory(driver)
3 add_subdirectory(intel-features)
4
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)
9
10 add_lldb_tool_subdirectory(lldb-instr)
11 add_lldb_tool_subdirectory(lldb-vscode)
12
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()
19
20 if (LLDB_CAN_USE_LLDB_SERVER)
21 add_lldb_tool_subdirectory(lldb-server)
22 endif()