diff options
Diffstat (limited to 'source/DataFormatters')
| -rw-r--r-- | source/DataFormatters/CMakeLists.txt | 19 | ||||
| -rw-r--r-- | source/DataFormatters/Makefile | 14 | 
2 files changed, 33 insertions, 0 deletions
diff --git a/source/DataFormatters/CMakeLists.txt b/source/DataFormatters/CMakeLists.txt new file mode 100644 index 000000000000..bfb5c8b9f68b --- /dev/null +++ b/source/DataFormatters/CMakeLists.txt @@ -0,0 +1,19 @@ +add_lldb_library(lldbDataFormatters +  CXXFunctionPointer.cpp +  DataVisualization.cpp +  DumpValueObjectOptions.cpp +  FormatCache.cpp +  FormatClasses.cpp +  FormatManager.cpp +  FormattersHelpers.cpp +  LanguageCategory.cpp +  StringPrinter.cpp +  TypeCategory.cpp +  TypeCategoryMap.cpp +  TypeFormat.cpp +  TypeSummary.cpp +  TypeSynthetic.cpp +  TypeValidator.cpp +  ValueObjectPrinter.cpp +  VectorType.cpp +  ) diff --git a/source/DataFormatters/Makefile b/source/DataFormatters/Makefile new file mode 100644 index 000000000000..4eb3249e5a58 --- /dev/null +++ b/source/DataFormatters/Makefile @@ -0,0 +1,14 @@ +##===- source/DataFormatters/Makefile -------------------------*- Makefile -*-===## +#  +#                     The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +#  +##===----------------------------------------------------------------------===## + +LLDB_LEVEL := ../.. +LIBRARYNAME := lldbDataFormatters +BUILD_ARCHIVE = 1 + +include $(LLDB_LEVEL)/Makefile  | 
