[Lldb-commits] [lldb] r373105 - [CMake] Make Core depend on ClangDriverOptions (NFC)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri Sep 27 10:55:50 PDT 2019


Author: jdevlieghere
Date: Fri Sep 27 10:55:49 2019
New Revision: 373105

URL: http://llvm.org/viewvc/llvm-project?rev=373105&view=rev
Log:
[CMake] Make Core depend on ClangDriverOptions (NFC)

ModuleList.cpp includes clang/Driver/Driver.h which depends on
clang/Driver/Options.inc. This patch adds the corresponding TableGen
target to Core.

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

Modified: lldb/trunk/source/Core/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/CMakeLists.txt?rev=373105&r1=373104&r2=373105&view=diff
==============================================================================
--- lldb/trunk/source/Core/CMakeLists.txt (original)
+++ lldb/trunk/source/Core/CMakeLists.txt Fri Sep 27 10:55:49 2019
@@ -65,6 +65,9 @@ add_lldb_library(lldbCore
   ValueObjectSyntheticFilter.cpp
   ValueObjectVariable.cpp
 
+  DEPENDS
+    ClangDriverOptions
+
   LINK_LIBS
     clangAST
     clangDriver




More information about the lldb-commits mailing list