CMake: Builds and installs clang binary and libs (no docs yet). It
must be under the `tools' subdirectory of the LLVM *source* tree.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58180 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CMakeLists.txt b/lib/Analysis/CMakeLists.txt
new file mode 100644
index 0000000..626087a
--- /dev/null
+++ b/lib/Analysis/CMakeLists.txt
@@ -0,0 +1,31 @@
+set(LLVM_NO_RTTI 1)
+
+add_clang_library(clangAnalysis
+  BasicConstraintManager.cpp
+  BasicObjCFoundationChecks.cpp
+  BasicStore.cpp
+  BasicValueFactory.cpp
+  BugReporter.cpp
+  CFRefCount.cpp
+  CheckDeadStores.cpp
+  CheckNSError.cpp
+  CheckObjCDealloc.cpp
+  CheckObjCInstMethSignature.cpp
+  CheckObjCUnusedIVars.cpp
+  Environment.cpp
+  ExplodedGraph.cpp
+  GRBlockCounter.cpp
+  GRCoreEngine.cpp
+  GRExprEngine.cpp
+  GRExprEngineInternalChecks.cpp
+  GRSimpleVals.cpp
+  GRState.cpp
+  GRTransferFuncs.cpp
+  LiveVariables.cpp
+  MemRegion.cpp
+  PathDiagnostic.cpp
+  RegionStore.cpp
+  SVals.cpp
+  SymbolManager.cpp
+  UninitializedValues.cpp
+  )