summaryrefslogtreecommitdiff
path: root/source/Plugins/Process/gdb-remote/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'source/Plugins/Process/gdb-remote/CMakeLists.txt')
-rw-r--r--source/Plugins/Process/gdb-remote/CMakeLists.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/Plugins/Process/gdb-remote/CMakeLists.txt b/source/Plugins/Process/gdb-remote/CMakeLists.txt
new file mode 100644
index 0000000000000..8dbfa453f2c26
--- /dev/null
+++ b/source/Plugins/Process/gdb-remote/CMakeLists.txt
@@ -0,0 +1,16 @@
+if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
+ include_directories(${LIBXML2_INCLUDE_DIR})
+endif()
+
+add_lldb_library(lldbPluginProcessGDBRemote
+ GDBRemoteCommunication.cpp
+ GDBRemoteCommunicationClient.cpp
+ GDBRemoteCommunicationServer.cpp
+ GDBRemoteCommunicationServerCommon.cpp
+ GDBRemoteCommunicationServerLLGS.cpp
+ GDBRemoteCommunicationServerPlatform.cpp
+ GDBRemoteRegisterContext.cpp
+ ProcessGDBRemote.cpp
+ ProcessGDBRemoteLog.cpp
+ ThreadGDBRemote.cpp
+ )