Documentation update.

- Adding documentation for MSVC CRT option.
- Updating documentation to reflect that LINE_SEARCH_MINIMIZER is now
  ON by default.

Change-Id: I75b1b5957c3ab46f38631736ad1c65315bc92847
diff --git a/docs/source/building.rst b/docs/source/building.rst
index 855d2f2..f493c84 100644
--- a/docs/source/building.rst
+++ b/docs/source/building.rst
@@ -370,7 +370,7 @@
    gains in the ``SPARSE_SCHUR`` solver, you can disable some of the
    template specializations by turning this ``OFF``.
 
-#. ``LINE_SEARCH_MINIMIZER [Default: OFF]``: The line search based
+#. ``LINE_SEARCH_MINIMIZER [Default: ON]``: The line search based
    minimizer is mostly suitable for large scale optimization problems,
    or when sparse linear algebra libraries are not available. You can
    further save on some compile time and binary size by turning this
@@ -389,6 +389,10 @@
    addition, ``make ceres_docs`` can be used to build only the
    documentation.
 
+#. ``MSVC_USE_STATIC_CRT [Default: OFF]`` *Windows Only*: By default
+   Ceres will use the Visual Studio default, *shared* C-Run Time (CRT) library.
+   Turn this ``ON`` to use the *static* C-Run Time library instead.
+
 
 Options controlling Ceres dependency locations
 ----------------------------------------------