Files
llvm/lldb/source/DataFormatters/CMakeLists.txt
Adrian Prantl 87659a17d0 Reland: [lldb] Implement a formatter bytecode interpreter in C++
Compared to the python version, this also does type checking and error
handling, so it's slightly longer, however, it's still comfortably
under 500 lines.

Relanding with more explicit type conversions.
2024-12-10 16:37:53 -08:00

32 lines
594 B
CMake

add_lldb_library(lldbDataFormatters NO_PLUGIN_DEPENDENCIES
CXXFunctionPointer.cpp
DataVisualization.cpp
DumpValueObjectOptions.cpp
FormatCache.cpp
FormatClasses.cpp
FormatManager.cpp
FormatterBytecode.cpp
FormattersHelpers.cpp
FormatterSection.cpp
LanguageCategory.cpp
StringPrinter.cpp
TypeCategory.cpp
TypeCategoryMap.cpp
TypeFormat.cpp
TypeSummary.cpp
TypeSynthetic.cpp
ValueObjectPrinter.cpp
VectorType.cpp
LINK_LIBS
lldbCore
lldbInterpreter
lldbSymbol
lldbTarget
lldbUtility
lldbValueObject
LINK_COMPONENTS
Support
)