[PATCH] D95737: [NFC][Docs] Fix RAVFrontendAction doc's CMakelists.txt for Shared build
Shivam Gupta via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Feb 1 23:41:04 PST 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG6ee1f64a2e82: [NFC][Docs] Fix RAVFrontendAction doc's CMakelists.txt for Shared build (authored by xgupta).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D95737/new/
https://reviews.llvm.org/D95737
Files:
clang/docs/RAVFrontendAction.rst
Index: clang/docs/RAVFrontendAction.rst
===================================================================
--- clang/docs/RAVFrontendAction.rst
+++ clang/docs/RAVFrontendAction.rst
@@ -207,7 +207,14 @@
add_clang_executable(find-class-decls FindClassDecls.cpp)
- target_link_libraries(find-class-decls clangTooling)
+ target_link_libraries(find-class-decls
+ PRIVATE
+ clangAST
+ clangBasic
+ clangFrontend
+ clangSerialization
+ clangTooling
+ )
When running this tool over a small code snippet it will output all
declarations of a class n::m::C it found:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D95737.320687.patch
Type: text/x-patch
Size: 612 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210202/bb851bbb/attachment.bin>
More information about the cfe-commits
mailing list