1include_directories(../../../Utility/) 2 3add_lldb_library(lldbPluginProcessUtility PLUGIN 4 DynamicRegisterInfo.cpp 5 FreeBSDSignals.cpp 6 GDBRemoteSignals.cpp 7 HistoryThread.cpp 8 HistoryUnwind.cpp 9 InferiorCallPOSIX.cpp 10 LinuxSignals.cpp 11 MipsLinuxSignals.cpp 12 NetBSDSignals.cpp 13 RegisterContextDarwin_arm.cpp 14 RegisterContextDarwin_arm64.cpp 15 RegisterContextDarwin_i386.cpp 16 RegisterContextDarwin_x86_64.cpp 17 RegisterContextDummy.cpp 18 RegisterContextFreeBSD_i386.cpp 19 RegisterContextFreeBSD_mips64.cpp 20 RegisterContextFreeBSD_powerpc.cpp 21 RegisterContextFreeBSD_x86_64.cpp 22 RegisterContextHistory.cpp 23 RegisterContextLinux_i386.cpp 24 RegisterContextLinux_x86_64.cpp 25 RegisterContextLinux_mips64.cpp 26 RegisterContextLinux_mips.cpp 27 RegisterContextLinux_s390x.cpp 28 RegisterContextLLDB.cpp 29 RegisterContextMacOSXFrameBackchain.cpp 30 RegisterContextMach_arm.cpp 31 RegisterContextMach_i386.cpp 32 RegisterContextMach_x86_64.cpp 33 RegisterContextMemory.cpp 34 RegisterContextNetBSD_x86_64.cpp 35 RegisterContextPOSIX_arm.cpp 36 RegisterContextPOSIX_arm64.cpp 37 RegisterContextPOSIX_mips64.cpp 38 RegisterContextPOSIX_powerpc.cpp 39 RegisterContextPOSIX_s390x.cpp 40 RegisterContextPOSIX_x86.cpp 41 RegisterContextThreadMemory.cpp 42 RegisterInfoPOSIX_arm.cpp 43 RegisterInfoPOSIX_arm64.cpp 44 StopInfoMachException.cpp 45 ThreadMemory.cpp 46 UnwindLLDB.cpp 47 UnwindMacOSXFrameBackchain.cpp 48 49 LINK_LIBS 50 lldbBreakpoint 51 lldbCore 52 lldbDataFormatters 53 lldbExpression 54 lldbHost 55 lldbSymbol 56 lldbTarget 57 lldbUtility 58 lldbPluginProcessElfCore 59 LINK_COMPONENTS 60 Support 61 ) 62