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()
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()
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits