13 lines · plain
1set_property(DIRECTORY PROPERTY LLDB_PLUGIN_KIND SymbolLocator)2 3# Order matters here: the first symbol locator prevents further searching.4# For DWARF binaries that are both stripped and split, the Default plugin5# will return the stripped binary when asked for the ObjectFile, which then6# prevents an unstripped binary from being requested from the Debuginfod7# provider.8add_subdirectory(Debuginfod)9add_subdirectory(Default)10if (CMAKE_SYSTEM_NAME MATCHES "Darwin")11 add_subdirectory(DebugSymbols)12endif()13