This patch refactors PlaceholderObjectFile into ObjectFile plugin directory so that we can reuse it for other cases like coredump debugging with NT_FILE notes. PlaceholderObjectFile is also renamed to ObjectFilePlaceholder to be consistent with ObjectFile plugin naming convention. Differential Revision: https://reviews.llvm.org/D145955
13 lines
198 B
CMake
13 lines
198 B
CMake
add_lldb_library(lldbPluginObjectFilePlaceholder PLUGIN
|
|
ObjectFilePlaceholder.cpp
|
|
|
|
LINK_LIBS
|
|
lldbCore
|
|
lldbHost
|
|
lldbSymbol
|
|
lldbTarget
|
|
LINK_COMPONENTS
|
|
Object
|
|
Support
|
|
)
|