summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2012-06-05 18:21:28 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2012-06-05 18:21:28 (GMT)
commit80abbeb3f2fe1cd245633e6ac52caa329f37ae52 (patch)
treeff9adba2edcae426859575be3fc93494ac022caa /Source
parent364b62747b0707a2152281173087630c904a9053 (diff)
parenta0700ba26c5e26bfc514121a14688731a3cd0445 (diff)
downloadCMake-80abbeb3f2fe1cd245633e6ac52caa329f37ae52.zip
CMake-80abbeb3f2fe1cd245633e6ac52caa329f37ae52.tar.gz
CMake-80abbeb3f2fe1cd245633e6ac52caa329f37ae52.tar.bz2
Merge topic 'vcexpress-no-folder'
a0700ba VC Express doesn't support folders, ignore USE_FOLDER property
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalVisualStudio10Generator.cxx6
-rw-r--r--Source/cmGlobalVisualStudio10Generator.h3
2 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.cxx b/Source/cmGlobalVisualStudio10Generator.cxx
index 18a786d..947a1c9 100644
--- a/Source/cmGlobalVisualStudio10Generator.cxx
+++ b/Source/cmGlobalVisualStudio10Generator.cxx
@@ -278,3 +278,9 @@ void cmGlobalVisualStudio10Generator::PathTooLong(
this->LongestSource.SourceRel = sfRel;
}
}
+
+//----------------------------------------------------------------------------
+bool cmGlobalVisualStudio10Generator::UseFolderProperty()
+{
+ return IsExpressEdition() ? false : cmGlobalGenerator::UseFolderProperty();
+}
diff --git a/Source/cmGlobalVisualStudio10Generator.h b/Source/cmGlobalVisualStudio10Generator.h
index 4236563..060cdff 100644
--- a/Source/cmGlobalVisualStudio10Generator.h
+++ b/Source/cmGlobalVisualStudio10Generator.h
@@ -88,6 +88,9 @@ protected:
std::string PlatformToolset;
bool ExpressEdition;
+
+ bool UseFolderProperty();
+
private:
struct LongestSourcePath
{