xref: /llvm-project/lldb/source/Plugins/SymbolLocator/CMakeLists.txt (revision e77ac42bccb8c26bbf4b74d8e92eb09e7fa1b218)
1# Order matters here: the first symbol locator prevents further searching.
2# For DWARF binaries that are both stripped and split, the Default plugin
3# will return the stripped binary when asked for the ObjectFile, which then
4# prevents an unstripped binary from being requested from the Debuginfod
5# provider.
6add_subdirectory(Debuginfod)
7add_subdirectory(Default)
8if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
9  add_subdirectory(DebugSymbols)
10endif()
11