mirror of
https://github.com/intel/llvm.git
synced 2026-01-20 01:58:44 +08:00
Summary: This doesn't exist in other LLVM projects any longer and doesn't do anything. Reviewers: chaoren, labath Subscribers: emaste, tberghammer, lldb-commits, danalbert Differential Revision: http://reviews.llvm.org/D12586 llvm-svn: 246749
17 lines
467 B
CMake
17 lines
467 B
CMake
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
|
|
)
|