From 19484c059dc4ccbd99c16e740e1d9c0db6e65b1c Mon Sep 17 00:00:00 2001
From: Graham Perks <gperks2011@gmail.com>
Date: Wed, 27 Jul 2011 14:35:24 -0500
Subject: [PATCH] Document ENABLE_STATIC_RUNTIME

---
 INSTALL | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/INSTALL b/INSTALL
index 835c1fa9..89a555ab 100644
--- a/INSTALL
+++ b/INSTALL
@@ -45,10 +45,12 @@ the include folder to the project's User Header Search Paths.
 For Windows with Visual Studio 2010, cd to the taglib folder then:
   md build
   cd build
-  cmake -DENABLE_STATIC=ON -G "Visual Studio 10" ..
+  cmake -DENABLE_STATIC=ON -DENABLE_STATIC_RUNTIME=ON -G "Visual Studio 10" ..
   
-That will create a Visual Studio solution file that you can open and build
-as normal.  
+Including ENABLE_STATIC_RUNTIME=ON indicates you want taglib built using the
+static runtime library, rather than the DLL form of the runtime.
+cmake will create a Visual Studio solution, taglib.sln that you can open and
+build as normal.  
 
 Unit Tests
 ----------