diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-05-15 03:57:07 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-05-15 03:57:07 +0000 |
commit | a23cc727d8155d390a04f4ccf989eda561c9fc06 (patch) | |
tree | bbec721ec38559c35c17a6bf2dda7fa61c085540 | |
parent | 3bdbd97d6742e8be37781d79d2cde232fd2fc369 (diff) | |
download | bcm5719-llvm-a23cc727d8155d390a04f4ccf989eda561c9fc06.tar.gz bcm5719-llvm-a23cc727d8155d390a04f4ccf989eda561c9fc06.zip |
Revert "build: use the correct variable"
This reverts commit b5a8abd57f23e2f621d5ceb0f64f1bb8f9579c3f. This
should not be needed as the lldb-server tool will add
`LLDB_CAN_USE_LLDB_SERVER` which will never be set to true on Windows.
llvm-svn: 360745
-rw-r--r-- | lldb/unittests/tools/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/unittests/tools/CMakeLists.txt b/lldb/unittests/tools/CMakeLists.txt index b910be2e034..4c657866ca2 100644 --- a/lldb/unittests/tools/CMakeLists.txt +++ b/lldb/unittests/tools/CMakeLists.txt @@ -1,6 +1,6 @@ if(LLDB_TOOL_LLDB_MI_BUILD) add_subdirectory(lldb-mi) endif() -if(LLDB_CAN_USE_LLDB_SERVER) +if(LLDB_TOOL_LLDB_SERVER_BUILD) add_subdirectory(lldb-server) endif() |