forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			771 B
		
	
	
	
		
			CMake
		
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			771 B
		
	
	
	
		
			CMake
		
	
	
	
| if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
 | |
|   include_directories(${LIBXML2_INCLUDE_DIR})
 | |
| endif()
 | |
| 
 | |
| set(LLDB_PLUGINS
 | |
|   lldbPluginProcessUtility
 | |
|   lldbPluginPlatformMacOSX
 | |
| )
 | |
| 
 | |
| add_lldb_library(lldbPluginProcessGDBRemote PLUGIN
 | |
|   GDBRemoteClientBase.cpp
 | |
|   GDBRemoteCommunication.cpp
 | |
|   GDBRemoteCommunicationClient.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}
 | |
|   LINK_COMPONENTS
 | |
|     Support
 | |
|   )
 |