diff options
-rw-r--r-- | lldb/source/DataFormatters/CMakeLists.txt | 5 | ||||
-rw-r--r-- | lldb/source/Utility/CMakeLists.txt | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lldb/source/DataFormatters/CMakeLists.txt b/lldb/source/DataFormatters/CMakeLists.txt index ce39622236e..f7a1a37d82b 100644 --- a/lldb/source/DataFormatters/CMakeLists.txt +++ b/lldb/source/DataFormatters/CMakeLists.txt @@ -6,6 +6,11 @@ add_lldb_library(lldbDataFormatters FormatCache.cpp
FormatClasses.cpp
FormatManager.cpp
+ LibCxx.cpp
+ LibStdcpp.cpp
+ NSArray.cpp
+ NSDictionary.cpp
+ NSSet.cpp
TypeCategory.cpp
TypeCategoryMap.cpp
TypeFormat.cpp
diff --git a/lldb/source/Utility/CMakeLists.txt b/lldb/source/Utility/CMakeLists.txt index 326afae4763..520ec9634a4 100644 --- a/lldb/source/Utility/CMakeLists.txt +++ b/lldb/source/Utility/CMakeLists.txt @@ -2,9 +2,12 @@ set(LLVM_NO_RTTI 1) add_lldb_library(lldbUtility
ARM_DWARF_Registers.cpp
+ KQueue.cpp
PseudoTerminal.cpp
RefCounter.cpp
SharingPtr.cpp
StringExtractor.cpp
StringExtractorGDBRemote.cpp
+ TimeSpecTimeout.cpp
)
+
|