This removes the last usage of ProcFileReader from NativeProcessLinux and then deletes the class itself. llvm-svn: 298374
27 lines
607 B
CMake
27 lines
607 B
CMake
include_directories(.)
|
|
include_directories(../POSIX)
|
|
include_directories(../Utility)
|
|
|
|
add_lldb_library(lldbPluginProcessLinux PLUGIN
|
|
NativeProcessLinux.cpp
|
|
NativeRegisterContextLinux.cpp
|
|
NativeRegisterContextLinux_arm.cpp
|
|
NativeRegisterContextLinux_arm64.cpp
|
|
NativeRegisterContextLinux_x86_64.cpp
|
|
NativeRegisterContextLinux_mips64.cpp
|
|
NativeRegisterContextLinux_s390x.cpp
|
|
NativeThreadLinux.cpp
|
|
SingleStepCheck.cpp
|
|
|
|
LINK_LIBS
|
|
lldbCore
|
|
lldbHost
|
|
lldbSymbol
|
|
lldbTarget
|
|
lldbUtility
|
|
lldbPluginProcessPOSIX
|
|
lldbPluginProcessUtility
|
|
LINK_COMPONENTS
|
|
Support
|
|
)
|