diff options
| author | Alex Langford <apl@fb.com> | 2020-01-10 16:10:06 -0800 |
|---|---|---|
| committer | Alex Langford <apl@fb.com> | 2020-01-13 11:41:30 -0800 |
| commit | 2bb154591fab6c1d3a99d63ef03c234f0a363410 (patch) | |
| tree | 9814ffc51e29446b10163e60e4d2a4fbf6397b88 | |
| parent | f5465e74ef4c9e24f867002aa598dc9e6481ead3 (diff) | |
| download | bcm5719-llvm-2bb154591fab6c1d3a99d63ef03c234f0a363410.tar.gz bcm5719-llvm-2bb154591fab6c1d3a99d63ef03c234f0a363410.zip | |
[lldb-server] Remove dead CMake code
No files in lldb-server are including a header from a plugin without the
whole path to the header relative to the lldb source directory. There is
no need to include the specific directories as a result.
| -rw-r--r-- | lldb/tools/lldb-server/CMakeLists.txt | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/lldb/tools/lldb-server/CMakeLists.txt b/lldb/tools/lldb-server/CMakeLists.txt index f1c826b4486..7754e9d05cb 100644 --- a/lldb/tools/lldb-server/CMakeLists.txt +++ b/lldb/tools/lldb-server/CMakeLists.txt @@ -1,27 +1,3 @@ -if ( CMAKE_SYSTEM_NAME MATCHES "Linux" ) -include_directories( - ../../../../llvm/include - ../../source/Plugins/Process/Linux - ../../source/Plugins/Process/POSIX - ) -endif () - -if ( CMAKE_SYSTEM_NAME MATCHES "FreeBSD" ) -include_directories( - ../../../../llvm/include - ../../source/Plugins/Process/FreeBSD - ../../source/Plugins/Process/POSIX - ) -endif () - -if ( CMAKE_SYSTEM_NAME MATCHES "NetBSD" ) -include_directories( - ../../../../llvm/include - ../../source/Plugins/Process/NetBSD - ../../source/Plugins/Process/POSIX - ) -endif () - include_directories(../../source) set(LLDB_PLUGINS) |

