Pavel Labath 7e471c1fd0
[lldb/cmake] Use ADDITIONAL_HEADER(_DIR)?S (#142587)
Replace (questionable) header globs with an explicit argument supported
by llvm_add_library.
2025-06-10 11:58:39 +02:00

33 lines
662 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
ADDITIONAL_HEADER_DIRS
${LLDB_INCLUDE_DIR}/lldb/DataFormatters
LINK_COMPONENTS
Support
LINK_LIBS
lldbCore
lldbInterpreter
lldbSymbol
lldbTarget
lldbUtility
lldbValueObject
)