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

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

Issue 583143002: Build clang tools using CMake (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo Created 6 years, 3 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 | « tools/clang/blink_gc_plugin/CMakeLists.txt ('k') | tools/clang/empty_string/Makefile » ('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 )
6
7 add_llvm_executable(empty_string
8 EmptyStringConverter.cpp
9 )
10
11 target_link_libraries(empty_string
12 clangAST
13 clangASTMatchers
14 clangAnalysis
15 clangBasic
16 clangDriver
17 clangEdit
18 clangFrontend
19 clangLex
20 clangParse
21 clangSema
22 clangSerialization
23 clangTooling
24 )
25
26 install(TARGETS empty_string RUNTIME DESTINATION bin)
OLDNEW
« no previous file with comments | « tools/clang/blink_gc_plugin/CMakeLists.txt ('k') | tools/clang/empty_string/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698