[cfe-commits] Moves clang-check from examples/Tooling into tools (issue4449067)

klimek at google.com klimek at google.com
Thu Apr 28 13:57:52 PDT 2011


Reviewers: chandlerc,

Description:
Looks like it should have been there all along - clang-check is a useful
tool for quick feedback editor-integration.

Please review this at http://codereview.appspot.com/4449067/

Affected files:
   M examples/CMakeLists.txt
   M tools/CMakeLists.txt
   A + tools/clang-check/CMakeLists.txt
   A + tools/clang-check/ClangCheck.cpp


Index: examples/CMakeLists.txt
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index  
8e16ef1c6cfbb3aab974d65edc522898d2a6970d..317bc81637d8cf6d94c4e316cb3ece3d117a9b10  
100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -1,3 +1,2 @@
  add_subdirectory(clang-interpreter)
  add_subdirectory(PrintFunctionNames)
-add_subdirectory(Tooling)
Index: tools/CMakeLists.txt
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt
index  
ae33b782d49d24ad2c05886eb7bcfb4278bb301a..4555aa68df6106db128e1b1a88a1d53adbf48a35  
100644
--- a/tools/CMakeLists.txt
+++ b/tools/CMakeLists.txt
@@ -1,3 +1,4 @@
  add_subdirectory(libclang)
  add_subdirectory(c-index-test)
  add_subdirectory(driver)
+add_subdirectory(clang-check)
Index: tools/clang-check/CMakeLists.txt
diff --git a/examples/Tooling/CMakeLists.txt  
b/tools/clang-check/CMakeLists.txt
similarity index 100%
rename from examples/Tooling/CMakeLists.txt
rename to tools/clang-check/CMakeLists.txt
Index: tools/clang-check/ClangCheck.cpp
diff --git a/examples/Tooling/ClangCheck.cpp  
b/tools/clang-check/ClangCheck.cpp
similarity index 100%
rename from examples/Tooling/ClangCheck.cpp
rename to tools/clang-check/ClangCheck.cpp





More information about the cfe-commits mailing list