Files
clang-p2996/lldb/unittests/Process/Linux/CMakeLists.txt
Walter Erquinigo 7b73de9ec2 [trace][intelpt] Support system-wide tracing [3] - Refactor IntelPTThreadTrace
I'm refactoring IntelPTThreadTrace into IntelPTSingleBufferTrace so that it can
both single threads or single cores. In this diff I'm basically renaming the
class, moving it to its own file, and removing all the pieces that are not used
along with some basic cleanup.

Differential Revision: https://reviews.llvm.org/D124648
2022-05-09 16:05:26 -07:00

11 lines
219 B
CMake

add_lldb_unittest(ProcessLinuxTests
PerfTests.cpp
ProcfsTests.cpp
LINK_LIBS
lldbPluginProcessLinux
)
target_include_directories(ProcessLinuxTests PRIVATE
${LLDB_SOURCE_DIR}/source/Plugins/Process/Linux)