build: use the correct variable

Adjust the variable that controls whether the unit tests use `lldb-server`.
This should repair the default build on Windows.

llvm-svn: 360695
This commit is contained in:
Saleem Abdulrasool 2019-05-14 17:24:45 +00:00
parent bd8d309111
commit 1acec2b639
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
if(LLDB_TOOL_LLDB_MI_BUILD)
add_subdirectory(lldb-mi)
endif()
if(LLDB_TOOL_LLDB_SERVER_BUILD)
if(LLDB_CAN_USE_LLDB_SERVER)
add_subdirectory(lldb-server)
endif()