summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio7Generator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2012-11-16 14:23:45 (GMT)
committerBrad King <brad.king@kitware.com>2012-11-16 14:23:45 (GMT)
commit45d4f81fde2c5c29698787e30b9bebb91211eb01 (patch)
tree14adc26c1cd0d7f015f7bd23a81f72652f416230 /Source/cmGlobalVisualStudio7Generator.h
parent694322ecea7725e5e00e3d46c09e0588afc633db (diff)
parent739f16653d823ea9519405da837cd57dcf204403 (diff)
downloadCMake-45d4f81fde2c5c29698787e30b9bebb91211eb01.zip
CMake-45d4f81fde2c5c29698787e30b9bebb91211eb01.tar.gz
CMake-45d4f81fde2c5c29698787e30b9bebb91211eb01.tar.bz2
Merge topic 'per-config-EXCLUDE_FROM_DEFAULT_BUILD' into vs-global-sections
Conflicts: Source/cmGlobalVisualStudio7Generator.h
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.h')
-rw-r--r--Source/cmGlobalVisualStudio7Generator.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.h b/Source/cmGlobalVisualStudio7Generator.h
index db59dd6..8ba1f44 100644
--- a/Source/cmGlobalVisualStudio7Generator.h
+++ b/Source/cmGlobalVisualStudio7Generator.h
@@ -105,10 +105,10 @@ protected:
const char* name, const char* path, cmTarget &t);
virtual void WriteProjectDepends(std::ostream& fout,
const char* name, const char* path, cmTarget &t);
- virtual void WriteProjectConfigurations(std::ostream& fout,
- const char* name,
- bool partOfDefaultBuild,
- const char* platformMapping = NULL);
+ virtual void WriteProjectConfigurations(
+ std::ostream& fout, const char* name,
+ const std::set<std::string>& configsPartOfDefaultBuild,
+ const char* platformMapping = NULL);
virtual void WriteSLNGlobalSections(std::ostream& fout,
cmLocalGenerator* root);
virtual void WriteSLNFooter(std::ostream& fout);
@@ -138,8 +138,8 @@ protected:
std::string ConvertToSolutionPath(const char* path);
- bool IsPartOfDefaultBuild(const char* project,
- cmTarget* target);
+ std::set<std::string> IsPartOfDefaultBuild(const char* project,
+ cmTarget* target);
std::vector<std::string> Configurations;
std::map<cmStdString, cmStdString> GUIDMap;