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

Unified Diff: tools/clang/rewrite_scoped_refptr/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/clang/plugins/CMakeLists.txt ('k') | tools/clang/rewrite_scoped_refptr/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/rewrite_scoped_refptr/CMakeLists.txt
diff --git a/tools/clang/rewrite_scoped_refptr/CMakeLists.txt b/tools/clang/rewrite_scoped_refptr/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..87ce4d899f7b6e6578039f9152e41961ffebfbd9
--- /dev/null
+++ b/tools/clang/rewrite_scoped_refptr/CMakeLists.txt
@@ -0,0 +1,26 @@
+set(LLVM_LINK_COMPONENTS
+ BitReader
+ MCParser
+ Option
+ )
+
+add_llvm_executable(rewrite_scoped_refptr
+ RewriteScopedRefptr.cpp
+ )
+
+target_link_libraries(rewrite_scoped_refptr
+ clangAST
+ clangASTMatchers
+ clangAnalysis
+ clangBasic
+ clangDriver
+ clangEdit
+ clangFrontend
+ clangLex
+ clangParse
+ clangSema
+ clangSerialization
+ clangTooling
+ )
+
+install(TARGETS rewrite_scoped_refptr RUNTIME DESTINATION bin)
« no previous file with comments | « tools/clang/plugins/CMakeLists.txt ('k') | tools/clang/rewrite_scoped_refptr/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698