[Lldb-commits] [PATCH] D58793: [CMake] Make liblldb depend on clang-headers

Alex Langford via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 28 14:23:50 PST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL355149: [CMake] Make liblldb depend on clang-headers (authored by xiaobai, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D58793/new/

https://reviews.llvm.org/D58793

Files:
  lldb/trunk/source/API/CMakeLists.txt


Index: lldb/trunk/source/API/CMakeLists.txt
===================================================================
--- lldb/trunk/source/API/CMakeLists.txt
+++ lldb/trunk/source/API/CMakeLists.txt
@@ -151,6 +151,10 @@
   )
 endif()
 
+if (NOT LLDB_BUILT_STANDALONE)
+  add_dependencies(liblldb clang-headers)
+endif()
+
 if(LLDB_BUILD_FRAMEWORK)
   include(LLDBFramework)
 endif()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58793.188790.patch
Type: text/x-patch
Size: 378 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190228/6f1ba74f/attachment.bin>


More information about the lldb-commits mailing list