]> granicus.if.org Git - clang/commitdiff
[examples] Add tablegen'd ClangCommentCommandList as a dependency for plugins.
authorJordan Rose <jordan_rose@apple.com>
Thu, 13 Feb 2014 18:12:30 +0000 (18:12 +0000)
committerJordan Rose <jordan_rose@apple.com>
Thu, 13 Feb 2014 18:12:30 +0000 (18:12 +0000)
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

examples/PrintFunctionNames/CMakeLists.txt
examples/analyzer-plugin/CMakeLists.txt

index dcc39a57683b46623ccbfdf88a5ffd8d1920edd4..f24b92d320be2a07d5afe0f2a6e4227b750ed833 100644 (file)
@@ -14,6 +14,7 @@ add_llvm_loadable_module(PrintFunctionNames PrintFunctionNames.cpp)
 add_dependencies(PrintFunctionNames
   ClangAttrClasses
   ClangAttrList
+  ClangCommentCommandList
   ClangCommentNodes
   ClangDeclNodes
   ClangDiagnosticCommon
index a58f57c487f62027a9c62eb7dd6936b621f43aef..9c65d4872aa10f39362eced1d6942d10e2fa5f76 100644 (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
   )