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

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

Issue 615083006: Fix clang tooling build on Linux (shim CMake in LLVM tree). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor formatting tweak Created 6 years, 2 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
OLDNEW
1 set(LLVM_LINK_COMPONENTS 1 set(LLVM_LINK_COMPONENTS
2 BitReader 2 BitReader
3 MCParser 3 MCParser
4 Option 4 Option
5 ) 5 )
6 6
7 add_llvm_executable(rewrite_scoped_refptr 7 add_llvm_executable(rewrite_scoped_refptr
8 RewriteScopedRefptr.cpp 8 RewriteScopedRefptr.cpp
9 ) 9 )
10 10
11 target_link_libraries(rewrite_scoped_refptr 11 target_link_libraries(rewrite_scoped_refptr
12 clangAST 12 clangAST
13 clangASTMatchers 13 clangASTMatchers
14 clangAnalysis 14 clangAnalysis
15 clangBasic 15 clangBasic
16 clangDriver 16 clangDriver
17 clangEdit 17 clangEdit
18 clangFrontend 18 clangFrontend
19 clangLex 19 clangLex
20 clangParse 20 clangParse
21 clangSema 21 clangSema
22 clangSerialization 22 clangSerialization
23 clangTooling 23 clangTooling
24 ) 24 )
25 25
26 install(TARGETS rewrite_scoped_refptr RUNTIME DESTINATION bin) 26 cr_install(TARGETS rewrite_scoped_refptr RUNTIME DESTINATION bin)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698