Rename lldb-vscode to lldb-dap. This change is largely mechanical. The following substitutions cover the majority of the changes in this commit: s/VSCODE/DAP/ s/VSCode/DAP/ s/vscode/dap/ s/g_vsc/g_dap/ Discourse RFC: https://discourse.llvm.org/t/rfc-rename-lldb-vscode-to-lldb-dap/74075/
24 lines
696 B
CMake
24 lines
696 B
CMake
add_subdirectory(argdumper)
|
|
add_subdirectory(driver)
|
|
add_subdirectory(intel-features)
|
|
|
|
# We want lldb-test to be built only when it's needed,
|
|
# i.e. if a target requires it as dependency. The typical
|
|
# example is `check-lldb`. So, we pass EXCLUDE_FROM_ALL here.
|
|
add_subdirectory(lldb-test EXCLUDE_FROM_ALL)
|
|
add_subdirectory(lldb-fuzzer EXCLUDE_FROM_ALL)
|
|
|
|
add_lldb_tool_subdirectory(lldb-instr)
|
|
add_lldb_tool_subdirectory(lldb-dap)
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
add_lldb_tool_subdirectory(darwin-debug)
|
|
if(NOT LLDB_USE_SYSTEM_DEBUGSERVER)
|
|
add_lldb_tool_subdirectory(debugserver)
|
|
endif()
|
|
endif()
|
|
|
|
if (LLDB_CAN_USE_LLDB_SERVER)
|
|
add_lldb_tool_subdirectory(lldb-server)
|
|
endif()
|