diff options
Diffstat (limited to 'source/Plugins/Process/gdb-remote/CMakeLists.txt')
-rw-r--r-- | source/Plugins/Process/gdb-remote/CMakeLists.txt | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/source/Plugins/Process/gdb-remote/CMakeLists.txt b/source/Plugins/Process/gdb-remote/CMakeLists.txt deleted file mode 100644 index 4eb5291d54d5a..0000000000000 --- a/source/Plugins/Process/gdb-remote/CMakeLists.txt +++ /dev/null @@ -1,42 +0,0 @@ -if (CMAKE_SYSTEM_NAME MATCHES "Darwin") - include_directories(${LIBXML2_INCLUDE_DIR}) -endif() - -set(LLDB_PLUGINS - lldbPluginProcessUtility - lldbPluginPlatformMacOSX -) - -if(HAVE_LIBCOMPRESSION) - set(LIBCOMPRESSION compression) -endif() - -add_lldb_library(lldbPluginProcessGDBRemote PLUGIN - GDBRemoteClientBase.cpp - GDBRemoteCommunication.cpp - GDBRemoteCommunicationClient.cpp - GDBRemoteCommunicationHistory.cpp - GDBRemoteCommunicationReplayServer.cpp - GDBRemoteCommunicationServer.cpp - GDBRemoteCommunicationServerCommon.cpp - GDBRemoteCommunicationServerLLGS.cpp - GDBRemoteCommunicationServerPlatform.cpp - GDBRemoteRegisterContext.cpp - ProcessGDBRemote.cpp - ProcessGDBRemoteLog.cpp - ThreadGDBRemote.cpp - - LINK_LIBS - lldbBreakpoint - lldbCore - lldbDataFormatters - lldbHost - lldbInterpreter - lldbSymbol - lldbTarget - lldbUtility - ${LLDB_PLUGINS} - ${LIBCOMPRESSION} - LINK_COMPONENTS - Support - ) |