summaryrefslogtreecommitdiff
path: root/source/Utility
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2019-08-20 18:01:57 +0000
committerDimitry Andric <dim@FreeBSD.org>2019-08-20 18:01:57 +0000
commit88c643b6fec27eec436c8d138fee6346e92337d6 (patch)
tree82cd13b2f3cde1c9e5f79689ba4e6ba67694843f /source/Utility
parent94994d372d014ce4c8758b9605d63fae651bd8aa (diff)
Notes
Diffstat (limited to 'source/Utility')
-rw-r--r--source/Utility/CMakeLists.txt98
1 files changed, 0 insertions, 98 deletions
diff --git a/source/Utility/CMakeLists.txt b/source/Utility/CMakeLists.txt
deleted file mode 100644
index 008054a0ae6e4..0000000000000
--- a/source/Utility/CMakeLists.txt
+++ /dev/null
@@ -1,98 +0,0 @@
-set(LLDB_SYSTEM_LIBS)
-
-# Windows-only libraries
-if ( CMAKE_SYSTEM_NAME MATCHES "Windows" )
- list(APPEND LLDB_SYSTEM_LIBS
- ws2_32
- rpcrt4
- )
-endif ()
-
-if (NOT LLDB_DISABLE_LIBEDIT)
- list(APPEND LLDB_SYSTEM_LIBS ${libedit_LIBRARIES})
-endif()
-if (NOT LLDB_DISABLE_CURSES)
- list(APPEND LLDB_SYSTEM_LIBS ${CURSES_LIBRARIES})
- if(LLVM_ENABLE_TERMINFO AND HAVE_TERMINFO)
- list(APPEND LLDB_SYSTEM_LIBS ${TERMINFO_LIBS})
- endif()
-endif()
-
-if (NOT HAVE_CXX_ATOMICS64_WITHOUT_LIB )
- list(APPEND LLDB_SYSTEM_LIBS atomic)
-endif()
-
-if(Backtrace_FOUND)
- list(APPEND LLDB_SYSTEM_LIBS ${Backtrace_LIBRARY})
-endif()
-
-if (NOT LLDB_DISABLE_PYTHON AND NOT LLVM_BUILD_STATIC)
- list(APPEND LLDB_SYSTEM_LIBS ${PYTHON_LIBRARIES})
-endif()
-
-list(APPEND LLDB_SYSTEM_LIBS ${system_libs})
-
-if (LLVM_BUILD_STATIC)
- if (NOT LLDB_DISABLE_PYTHON)
- list(APPEND LLDB_SYSTEM_LIBS python2.7 util)
- endif()
- if (NOT LLDB_DISABLE_CURSES)
- list(APPEND LLDB_SYSTEM_LIBS gpm)
- endif()
-endif()
-
-add_lldb_library(lldbUtility
- ArchSpec.cpp
- Args.cpp
- Baton.cpp
- Broadcaster.cpp
- Connection.cpp
- ConstString.cpp
- CompletionRequest.cpp
- DataBufferHeap.cpp
- DataBufferLLVM.cpp
- DataEncoder.cpp
- DataExtractor.cpp
- Environment.cpp
- Event.cpp
- FileSpec.cpp
- IOObject.cpp
- JSON.cpp
- LLDBAssert.cpp
- Listener.cpp
- Log.cpp
- Logging.cpp
- NameMatches.cpp
- RegisterValue.cpp
- RegularExpression.cpp
- Reproducer.cpp
- Scalar.cpp
- SelectHelper.cpp
- SharingPtr.cpp
- State.cpp
- Status.cpp
- Stream.cpp
- StreamCallback.cpp
- StreamGDBRemote.cpp
- StreamString.cpp
- StringExtractor.cpp
- StringExtractorGDBRemote.cpp
- StringLexer.cpp
- StringList.cpp
- StructuredData.cpp
- TildeExpressionResolver.cpp
- Timer.cpp
- UserID.cpp
- UriParser.cpp
- UUID.cpp
- VASprintf.cpp
- VMRange.cpp
-
- LINK_LIBS
- ${LLDB_SYSTEM_LIBS}
- # lldbUtility does not depend on other LLDB libraries
-
- LINK_COMPONENTS
- BinaryFormat
- Support
- )