diff options
author | Peter Kuemmel <syntheticpp@gmx.net> | 2012-06-02 17:58:03 (GMT) |
---|---|---|
committer | Peter Kuemmel <syntheticpp@gmx.net> | 2012-06-02 17:58:03 (GMT) |
commit | a0700ba26c5e26bfc514121a14688731a3cd0445 (patch) | |
tree | fbf4d23b23fbc71c3e5243af6e3fbd22767b2fc3 /Source/cmGlobalVisualStudio10Generator.cxx | |
parent | 076ab5202a631ac7c8fd6bc84554834ddff57933 (diff) | |
download | CMake-a0700ba26c5e26bfc514121a14688731a3cd0445.zip CMake-a0700ba26c5e26bfc514121a14688731a3cd0445.tar.gz CMake-a0700ba26c5e26bfc514121a14688731a3cd0445.tar.bz2 |
VC Express doesn't support folders, ignore USE_FOLDER property
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio10Generator.cxx | 6 |
1 files changed, 6 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(); +} |