[Lldb-commits] [PATCH] D55032: [CMake] Fix standalone build for debugserver on macOS
Phabricator via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 29 06:54:54 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL347869: [CMake] Fix standalone build for debugserver on macOS (authored by stefan.graenitz, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D55032?vs=175775&id=175865#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55032/new/
https://reviews.llvm.org/D55032
Files:
lldb/trunk/tools/debugserver/CMakeLists.txt
Index: lldb/trunk/tools/debugserver/CMakeLists.txt
===================================================================
--- lldb/trunk/tools/debugserver/CMakeLists.txt
+++ lldb/trunk/tools/debugserver/CMakeLists.txt
@@ -8,12 +8,17 @@
"${CMAKE_SOURCE_DIR}/../../cmake"
"${CMAKE_SOURCE_DIR}/../../cmake/modules"
)
-
+
include(LLDBStandalone)
include(AddLLDB)
set(LLDB_SOURCE_DIR "${CMAKE_SOURCE_DIR}/../../")
include_directories(${LLDB_SOURCE_DIR}/include)
+
+ # lldb-suite is a dummy target that encompasses all the necessary tools and
+ # libraries for building a fully-functioning liblldb.
+ add_custom_target(lldb-suite)
+ set(LLDB_SUITE_TARGET lldb-suite)
endif()
add_subdirectory(source)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D55032.175865.patch
Type: text/x-patch
Size: 730 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20181129/5953e32c/attachment.bin>
More information about the lldb-commits
mailing list