diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-09-27 17:55:49 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-09-27 17:55:49 +0000 |
commit | e3fed89046b3651ab579250cc0fc37efc90aa7f3 (patch) | |
tree | 02e99ca41a1b8387dd058b9dddeffbb5e67ca06e | |
parent | 4ae2381430013b64a3c013c62bf038f3fa659f66 (diff) | |
download | bcm5719-llvm-e3fed89046b3651ab579250cc0fc37efc90aa7f3.tar.gz bcm5719-llvm-e3fed89046b3651ab579250cc0fc37efc90aa7f3.zip |
[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.
llvm-svn: 373105
-rw-r--r-- | lldb/source/Core/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Core/CMakeLists.txt b/lldb/source/Core/CMakeLists.txt index 6e10ff7eeca..4ed39a08cb9 100644 --- a/lldb/source/Core/CMakeLists.txt +++ b/lldb/source/Core/CMakeLists.txt @@ -65,6 +65,9 @@ add_lldb_library(lldbCore ValueObjectSyntheticFilter.cpp ValueObjectVariable.cpp + DEPENDS + ClangDriverOptions + LINK_LIBS clangAST clangDriver |