Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: tools/clang/move_raw/CMakeLists.txt

Issue 2919243002: Add a clang tool to detect std::move(raw ptr) (Closed)
Patch Set: Add a TODO to make this a clang-tidy check Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « docs/clang_tool_refactoring.md ('k') | tools/clang/move_raw/MoveRaw.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 set(LLVM_LINK_COMPONENTS
2 BitReader
3 MCParser
4 Option
5 X86AsmParser
6 X86CodeGen
7 )
8
9 add_llvm_executable(move_raw
10 MoveRaw.cpp
11 )
12
13 target_link_libraries(move_raw
14 clangAST
15 clangASTMatchers
16 clangAnalysis
17 clangBasic
18 clangDriver
19 clangEdit
20 clangFrontend
21 clangLex
22 clangParse
23 clangSema
24 clangSerialization
25 clangTooling
26 )
27
28 cr_install(TARGETS move_raw RUNTIME DESTINATION bin)
OLDNEW
« no previous file with comments | « docs/clang_tool_refactoring.md ('k') | tools/clang/move_raw/MoveRaw.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698