Changeset View
Changeset View
Standalone View
Standalone View
lldb/trunk/source/Plugins/Process/gdb-remote/CMakeLists.txt
if (CMAKE_SYSTEM_NAME MATCHES "Darwin") | if (CMAKE_SYSTEM_NAME MATCHES "Darwin") | ||||
include_directories(${LIBXML2_INCLUDE_DIR}) | include_directories(${LIBXML2_INCLUDE_DIR}) | ||||
endif() | endif() | ||||
set(LLDB_PLUGINS | set(LLDB_PLUGINS | ||||
lldbPluginProcessUtility | lldbPluginProcessUtility | ||||
lldbPluginPlatformMacOSX | lldbPluginPlatformMacOSX | ||||
) | ) | ||||
if(CMAKE_SYSTEM_NAME MATCHES "Linux|Android") | |||||
list(APPEND LLDB_PLUGINS lldbPluginProcessLinux) | |||||
endif() | |||||
if(CMAKE_SYSTEM_NAME MATCHES "NetBSD") | |||||
list(APPEND LLDB_PLUGINS lldbPluginProcessNetBSD) | |||||
endif() | |||||
add_lldb_library(lldbPluginProcessGDBRemote PLUGIN | add_lldb_library(lldbPluginProcessGDBRemote PLUGIN | ||||
GDBRemoteClientBase.cpp | GDBRemoteClientBase.cpp | ||||
GDBRemoteCommunication.cpp | GDBRemoteCommunication.cpp | ||||
GDBRemoteCommunicationClient.cpp | GDBRemoteCommunicationClient.cpp | ||||
GDBRemoteCommunicationServer.cpp | GDBRemoteCommunicationServer.cpp | ||||
GDBRemoteCommunicationServerCommon.cpp | GDBRemoteCommunicationServerCommon.cpp | ||||
GDBRemoteCommunicationServerLLGS.cpp | GDBRemoteCommunicationServerLLGS.cpp | ||||
GDBRemoteCommunicationServerPlatform.cpp | GDBRemoteCommunicationServerPlatform.cpp | ||||
Show All 18 Lines |