diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-07-07 23:13:30 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-07-07 23:13:30 +0000 |
commit | 3a7bd67c06d83b6fdc1cfe8295d28c5dbc5e07ba (patch) | |
tree | a1a439a28b9870c13c56f1f64723cdb98c15afbe | |
parent | bb35151a166db2b4fee043bc90e60858ac2b7a89 (diff) |
ASTMatchers/CMakeLists.txt: Add dependencies to generated headers, or "make clean; make ASTMatchers" would fail.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159906 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/ASTMatchers/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/ASTMatchers/CMakeLists.txt b/lib/ASTMatchers/CMakeLists.txt index c27a37edd8..806b68783f 100644 --- a/lib/ASTMatchers/CMakeLists.txt +++ b/lib/ASTMatchers/CMakeLists.txt @@ -5,3 +5,12 @@ add_clang_library(clangASTMatchers ASTMatchFinder.cpp ASTMatchersInternal.cpp ) + +add_dependencies(clangASTMatchers + ClangAttrClasses + ClangAttrImpl + ClangAttrList + ClangCommentNodes + ClangDeclNodes + ClangStmtNodes + ) |