VC Express doesn't support folders, ignore USE_FOLDER property

This commit is contained in:
Peter Kuemmel 2012-06-02 19:58:03 +02:00
parent 076ab5202a
commit a0700ba26c
2 changed files with 9 additions and 0 deletions

View File

@ -278,3 +278,9 @@ void cmGlobalVisualStudio10Generator::PathTooLong(
this->LongestSource.SourceRel = sfRel;
}
}
//----------------------------------------------------------------------------
bool cmGlobalVisualStudio10Generator::UseFolderProperty()
{
return IsExpressEdition() ? false : cmGlobalGenerator::UseFolderProperty();
}

View File

@ -88,6 +88,9 @@ protected:
std::string PlatformToolset;
bool ExpressEdition;
bool UseFolderProperty();
private:
struct LongestSourcePath
{