r201350 - [examples] Add tablegen'd ClangCommentCommandList as a dependency for plugins.
Jordan Rose
jordan_rose at apple.com
Thu Feb 13 10:12:30 PST 2014
Author: jrose
Date: Thu Feb 13 12:12:30 2014
New Revision: 201350
URL: http://llvm.org/viewvc/llvm-project?rev=201350&view=rev
Log:
[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.
Modified:
cfe/trunk/examples/PrintFunctionNames/CMakeLists.txt
cfe/trunk/examples/analyzer-plugin/CMakeLists.txt
Modified: cfe/trunk/examples/PrintFunctionNames/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/examples/PrintFunctionNames/CMakeLists.txt?rev=201350&r1=201349&r2=201350&view=diff
==============================================================================
--- cfe/trunk/examples/PrintFunctionNames/CMakeLists.txt (original)
+++ cfe/trunk/examples/PrintFunctionNames/CMakeLists.txt Thu Feb 13 12:12:30 2014
@@ -14,6 +14,7 @@ add_llvm_loadable_module(PrintFunctionNa
add_dependencies(PrintFunctionNames
ClangAttrClasses
ClangAttrList
+ ClangCommentCommandList
ClangCommentNodes
ClangDeclNodes
ClangDiagnosticCommon
Modified: cfe/trunk/examples/analyzer-plugin/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/examples/analyzer-plugin/CMakeLists.txt?rev=201350&r1=201349&r2=201350&view=diff
==============================================================================
--- cfe/trunk/examples/analyzer-plugin/CMakeLists.txt (original)
+++ cfe/trunk/examples/analyzer-plugin/CMakeLists.txt Thu Feb 13 12:12:30 2014
@@ -3,11 +3,9 @@ add_llvm_loadable_module(SampleAnalyzerP
add_dependencies(SampleAnalyzerPlugin
ClangAttrClasses
ClangAttrList
+ ClangCommentCommandList
ClangCommentNodes
ClangDeclNodes
ClangDiagnosticCommon
ClangStmtNodes
- clangAST
- clangAnalysis
- clangStaticAnalyzerCore
)
More information about the cfe-commits
mailing list