[examples] Add tablegen'd ClangCommentCommandList as a dependency for plugins.

Also, remove library dependencies for the sample analyzer-plugin. The only
library changes that would require a rebuild should be in headers, which
should already implicitly be marked as dependencies.

llvm-svn: 201350
This commit is contained in:
Jordan Rose
2014-02-13 18:12:30 +00:00
parent cdf2fae610
commit ab57f79df4
2 changed files with 2 additions and 3 deletions

View File

@@ -14,6 +14,7 @@ add_llvm_loadable_module(PrintFunctionNames PrintFunctionNames.cpp)
add_dependencies(PrintFunctionNames
ClangAttrClasses
ClangAttrList
ClangCommentCommandList
ClangCommentNodes
ClangDeclNodes
ClangDiagnosticCommon

View File

@@ -3,11 +3,9 @@ add_llvm_loadable_module(SampleAnalyzerPlugin MainCallChecker.cpp)
add_dependencies(SampleAnalyzerPlugin
ClangAttrClasses
ClangAttrList
ClangCommentCommandList
ClangCommentNodes
ClangDeclNodes
ClangDiagnosticCommon
ClangStmtNodes
clangAST
clangAnalysis
clangStaticAnalyzerCore
)