[Lldb-commits] [lldb] r355149 - [CMake] Make liblldb depend on clang-headers

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 28 14:24:19 PST 2019


Author: xiaobai
Date: Thu Feb 28 14:24:18 2019
New Revision: 355149

URL: http://llvm.org/viewvc/llvm-project?rev=355149&view=rev
Log:
[CMake] Make liblldb depend on clang-headers

Summary:
The clang headers are useful when dealing with clang modules. There is also a
way to get to the clang headers from the SB API so it would be nice if they were
also available when we just build lldb.

Differential Revision: https://reviews.llvm.org/D58793

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

Modified: lldb/trunk/source/API/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/CMakeLists.txt?rev=355149&r1=355148&r2=355149&view=diff
==============================================================================
--- lldb/trunk/source/API/CMakeLists.txt (original)
+++ lldb/trunk/source/API/CMakeLists.txt Thu Feb 28 14:24:18 2019
@@ -151,6 +151,10 @@ else()
   )
 endif()
 
+if (NOT LLDB_BUILT_STANDALONE)
+  add_dependencies(liblldb clang-headers)
+endif()
+
 if(LLDB_BUILD_FRAMEWORK)
   include(LLDBFramework)
 endif()




More information about the lldb-commits mailing list