summaryrefslogtreecommitdiffstats
path: root/examples/analyzer-plugin
diff options
context:
space:
mode:
authorJordan Rose <jordan_rose@apple.com>2014-02-13 18:12:30 +0000
committerJordan Rose <jordan_rose@apple.com>2014-02-13 18:12:30 +0000
commitabd1fbfcbaf79911068dbe992e58b106c9bf2a6f (patch)
tree64cc7af2439aa3ecc637157317ccacf65fad2976 /examples/analyzer-plugin
parent2c974a9674382cfa4776e52f8e114e2b9eb2bb71 (diff)
[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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201350 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/analyzer-plugin')
-rw-r--r--examples/analyzer-plugin/CMakeLists.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/analyzer-plugin/CMakeLists.txt b/examples/analyzer-plugin/CMakeLists.txt
index a58f57c487..9c65d4872a 100644
--- a/examples/analyzer-plugin/CMakeLists.txt
+++ b/examples/analyzer-plugin/CMakeLists.txt
@@ -3,11 +3,9 @@ add_llvm_loadable_module(SampleAnalyzerPlugin MainCallChecker.cpp)
add_dependencies(SampleAnalyzerPlugin
ClangAttrClasses
ClangAttrList
+ ClangCommentCommandList
ClangCommentNodes
ClangDeclNodes
ClangDiagnosticCommon
ClangStmtNodes
- clangAST
- clangAnalysis
- clangStaticAnalyzerCore
)