[Lldb-commits] [lldb] r360745 - Revert "build: use the correct variable"
Saleem Abdulrasool via lldb-commits
lldb-commits at lists.llvm.org
Tue May 14 20:57:08 PDT 2019
Author: compnerd
Date: Tue May 14 20:57:07 2019
New Revision: 360745
URL: http://llvm.org/viewvc/llvm-project?rev=360745&view=rev
Log:
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.
Modified:
lldb/trunk/unittests/tools/CMakeLists.txt
Modified: lldb/trunk/unittests/tools/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/unittests/tools/CMakeLists.txt?rev=360745&r1=360744&r2=360745&view=diff
==============================================================================
--- lldb/trunk/unittests/tools/CMakeLists.txt (original)
+++ lldb/trunk/unittests/tools/CMakeLists.txt Tue May 14 20:57:07 2019
@@ -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()
More information about the lldb-commits
mailing list