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

Unified Diff: tools/clang/TaskToBind/CMakeLists.txt

Issue 7886056: Clang plugin that rewrites PostTask(_, NewRunnableMethod(...)) to PostTask(_, base::Bind(...)); (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | « no previous file | tools/clang/TaskToBind/Makefile » ('j') | tools/clang/TaskToBind/README.txt » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/TaskToBind/CMakeLists.txt
diff --git a/tools/clang/TaskToBind/CMakeLists.txt b/tools/clang/TaskToBind/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..27678cd3cb47088bd7c01a420c9f344e48d29b83
--- /dev/null
+++ b/tools/clang/TaskToBind/CMakeLists.txt
@@ -0,0 +1,15 @@
+set(MODULE TRUE)
+
+set( LLVM_USED_LIBS
+ clangFrontend
+ clangAST
+ )
+
+set( LLVM_LINK_COMPONENTS support mc)
+
+add_clang_library(TaskToBind TaskToBind.cpp)
+
+set_target_properties(TaskToBind
+ PROPERTIES
+ LINKER_LANGUAGE CXX
+ PREFIX "")
« no previous file with comments | « no previous file | tools/clang/TaskToBind/Makefile » ('j') | tools/clang/TaskToBind/README.txt » ('J')

Powered by Google App Engine
This is Rietveld 408576698