diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 18:01:57 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 18:01:57 +0000 |
commit | 88c643b6fec27eec436c8d138fee6346e92337d6 (patch) | |
tree | 82cd13b2f3cde1c9e5f79689ba4e6ba67694843f /source/Core | |
parent | 94994d372d014ce4c8758b9605d63fae651bd8aa (diff) |
Notes
Diffstat (limited to 'source/Core')
-rw-r--r-- | source/Core/CMakeLists.txt | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/source/Core/CMakeLists.txt b/source/Core/CMakeLists.txt deleted file mode 100644 index 15f2dcf6ed999..0000000000000 --- a/source/Core/CMakeLists.txt +++ /dev/null @@ -1,83 +0,0 @@ -set(LLDB_CURSES_LIBS) - -if (NOT LLDB_DISABLE_CURSES) - list(APPEND LLDB_CURSES_LIBS ${CURSES_LIBRARIES}) - if(LLVM_ENABLE_TERMINFO AND HAVE_TERMINFO) - list(APPEND LLDB_CURSES_LIBS ${TERMINFO_LIBS}) - endif() -endif() - -add_lldb_library(lldbCore - Address.cpp - AddressRange.cpp - AddressResolver.cpp - AddressResolverFileLine.cpp - AddressResolverName.cpp - Communication.cpp - Debugger.cpp - Disassembler.cpp - DumpDataExtractor.cpp - DumpRegisterValue.cpp - DynamicLoader.cpp - EmulateInstruction.cpp - FileLineResolver.cpp - FileSpecList.cpp - FormatEntity.cpp - Highlighter.cpp - IOHandler.cpp - Mangled.cpp - Module.cpp - ModuleChild.cpp - ModuleList.cpp - Opcode.cpp - PluginManager.cpp - RichManglingContext.cpp - SearchFilter.cpp - Section.cpp - SourceManager.cpp - StreamAsynchronousIO.cpp - StreamFile.cpp - UserSettingsController.cpp - Value.cpp - ValueObject.cpp - ValueObjectCast.cpp - ValueObjectChild.cpp - ValueObjectConstResult.cpp - ValueObjectConstResultCast.cpp - ValueObjectConstResultChild.cpp - ValueObjectConstResultImpl.cpp - ValueObjectDynamicValue.cpp - ValueObjectList.cpp - ValueObjectMemory.cpp - ValueObjectRegister.cpp - ValueObjectSyntheticFilter.cpp - ValueObjectVariable.cpp - - LINK_LIBS - clangAST - lldbBreakpoint - lldbDataFormatters - lldbExpression - lldbHost - lldbInterpreter - lldbSymbol - lldbTarget - lldbUtility - lldbPluginProcessUtility - lldbPluginCPlusPlusLanguage - lldbPluginObjCLanguage - ${LLDB_CURSES_LIBS} - - LINK_COMPONENTS - BinaryFormat - Support - Demangle - ) - -# Needed to properly resolve references in a debug build. -# TODO: Remove once we have better layering -set_target_properties(lldbCore PROPERTIES LINK_INTERFACE_MULTIPLICITY 4) - -if (NOT LLDB_DISABLE_LIBEDIT) - target_include_directories(lldbCore PRIVATE ${libedit_INCLUDE_DIRS}) -endif() |