2016-12-05 19:15:36 +08:00
|
|
|
add_subdirectory(argdumper)
|
|
|
|
add_subdirectory(driver)
|
2019-01-09 08:31:30 +08:00
|
|
|
add_subdirectory(intel-features)
|
2019-04-17 05:56:07 +08:00
|
|
|
|
|
|
|
# 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)
|
2022-03-26 00:03:52 +08:00
|
|
|
add_subdirectory(lldb-fuzzer EXCLUDE_FROM_ALL)
|
2019-04-17 05:15:28 +08:00
|
|
|
|
2022-01-21 04:08:20 +08:00
|
|
|
add_lldb_tool_subdirectory(lldb-instr)
|
2019-04-17 05:15:28 +08:00
|
|
|
add_lldb_tool_subdirectory(lldb-vscode)
|
2019-01-09 08:31:30 +08:00
|
|
|
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
2019-07-20 19:18:31 +08:00
|
|
|
add_lldb_tool_subdirectory(darwin-debug)
|
2019-09-25 06:39:04 +08:00
|
|
|
if(NOT LLDB_USE_SYSTEM_DEBUGSERVER)
|
|
|
|
add_lldb_tool_subdirectory(debugserver)
|
|
|
|
endif()
|
2019-01-09 08:31:30 +08:00
|
|
|
endif()
|
2019-05-14 06:55:11 +08:00
|
|
|
|
|
|
|
if (LLDB_CAN_USE_LLDB_SERVER)
|
|
|
|
add_lldb_tool_subdirectory(lldb-server)
|
|
|
|
endif()
|