diff options
author | Petr Kmoch <petr.kmoch@gmail.com> | 2012-10-11 19:57:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-11-13 14:08:44 (GMT) |
commit | d1f8828cc8094efd098db2dea85b7ec6c2f971dd (patch) | |
tree | 6198e1a92d57ca8ea7798f3201ad9924a2de3f53 /Source/cmGlobalVisualStudio8Generator.cxx | |
parent | b777272b0b165a62d61b745a394fe4fc99dc66ee (diff) | |
download | CMake-d1f8828cc8094efd098db2dea85b7ec6c2f971dd.zip CMake-d1f8828cc8094efd098db2dea85b7ec6c2f971dd.tar.gz CMake-d1f8828cc8094efd098db2dea85b7ec6c2f971dd.tar.bz2 |
Add property EXCLUDE_FROM_DEFAULT_BUILD_<CONFIG>
Allow EXCLUDE_FROM_DEFAULT_BUILD to be specified per configuration.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.cxx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index bca1754..bc2bbfb 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -258,9 +258,10 @@ cmGlobalVisualStudio8Generator //---------------------------------------------------------------------------- void cmGlobalVisualStudio8Generator -::WriteProjectConfigurations(std::ostream& fout, const char* name, - bool partOfDefaultBuild, - const char* platformMapping) +::WriteProjectConfigurations( + std::ostream& fout, const char* name, + const std::set<std::string>& configsPartOfDefaultBuild, + const char* platformMapping) { std::string guid = this->GetGUID(name); for(std::vector<std::string>::iterator i = this->Configurations.begin(); @@ -270,7 +271,9 @@ cmGlobalVisualStudio8Generator << "|" << this->GetPlatformName() << ".ActiveCfg = " << *i << "|" << (platformMapping ? platformMapping : this->GetPlatformName()) << "\n"; - if(partOfDefaultBuild) + std::set<std::string>::const_iterator + ci = configsPartOfDefaultBuild.find(*i); + if(!(ci == configsPartOfDefaultBuild.end())) { fout << "\t\t{" << guid << "}." << *i << "|" << this->GetPlatformName() << ".Build.0 = " << *i << "|" |