1 2add_lldb_library(lldbPluginProcessWindowsCommon PLUGIN 3 DebuggerThread.cpp 4 LocalDebugDelegate.cpp 5 NativeProcessWindows.cpp 6 NativeRegisterContextWindows.cpp 7 NativeRegisterContextWindows_arm.cpp 8 NativeRegisterContextWindows_arm64.cpp 9 NativeRegisterContextWindows_i386.cpp 10 NativeRegisterContextWindows_WoW64.cpp 11 NativeRegisterContextWindows_x86_64.cpp 12 NativeThreadWindows.cpp 13 ProcessDebugger.cpp 14 ProcessWindows.cpp 15 ProcessWindowsLog.cpp 16 RegisterContextWindows.cpp 17 TargetThreadWindows.cpp 18 arm/RegisterContextWindows_arm.cpp 19 arm64/RegisterContextWindows_arm64.cpp 20 x64/RegisterContextWindows_x64.cpp 21 x86/RegisterContextWindows_x86.cpp 22 23 LINK_LIBS 24 lldbCore 25 lldbHost 26 lldbInterpreter 27 lldbPluginDynamicLoaderWindowsDYLD 28 lldbSymbol 29 lldbTarget 30 ws2_32 31 rpcrt4 32 psapi 33 LINK_COMPONENTS 34 Support 35 ) 36