summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-10-05 19:31:49 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2010-10-05 19:31:49 (GMT)
commitdacc47853d39fe55aadf9fc25a2e63b12ab0bbe9 (patch)
tree5056112d7c09e1ffc3491767cd61f7a1591a133f /Source/cmGlobalGenerator.cxx
parent51047564bfefc793677c2de2bfc53d018fc28096 (diff)
parentfd3249e11afeb38284ee8e2012134de4d410c92b (diff)
downloadCMake-dacc47853d39fe55aadf9fc25a2e63b12ab0bbe9.zip
CMake-dacc47853d39fe55aadf9fc25a2e63b12ab0bbe9.tar.gz
CMake-dacc47853d39fe55aadf9fc25a2e63b12ab0bbe9.tar.bz2
Merge topic 'vs-project-groups'
fd3249e New USE_FOLDERS property OFF by default. (#3796)
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index c6d05b0..0def336 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -1871,9 +1871,10 @@ bool cmGlobalGenerator::UseFolderProperty()
return cmSystemTools::IsOn(prop);
}
- // By default, this feature is ON:
+ // By default, this feature is OFF, since it is not supported in the
+ // Visual Studio Express editions:
//
- return true;
+ return false;
}
//----------------------------------------------------------------------------