diff options
author | Leonid Yurchenko <nocturne@qarea.com> | 2012-04-16 14:07:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-04-16 14:17:03 (GMT) |
commit | 59139031a1aa24231b9302aa4cd8ecc4e22fb594 (patch) | |
tree | 297337f0f3f22ef31cfc9b04f7cf59d1536dde1f /Source/cmGlobalVisualStudio71Generator.h | |
parent | 31e7fadbb3bfd225e0d48e2d072ccc745d7f2689 (diff) | |
download | CMake-59139031a1aa24231b9302aa4cd8ecc4e22fb594.zip CMake-59139031a1aa24231b9302aa4cd8ecc4e22fb594.tar.gz CMake-59139031a1aa24231b9302aa4cd8ecc4e22fb594.tar.bz2 |
include_external_msproject: Add TYPE, GUID, PLATFORM options (#13120)
These allow one to reference more external VS project file variations.
Diffstat (limited to 'Source/cmGlobalVisualStudio71Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio71Generator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.h b/Source/cmGlobalVisualStudio71Generator.h index 81c2087..503b708 100644 --- a/Source/cmGlobalVisualStudio71Generator.h +++ b/Source/cmGlobalVisualStudio71Generator.h @@ -64,10 +64,12 @@ protected: const char* name, const char* path, cmTarget &t); virtual void WriteProjectConfigurations(std::ostream& fout, const char* name, - bool partOfDefaultBuild); + bool partOfDefaultBuild, + const char* platformMapping = NULL); virtual void WriteExternalProject(std::ostream& fout, const char* name, const char* path, + const char* typeGuid, const std::set<cmStdString>& depends); virtual void WriteSLNFooter(std::ostream& fout); virtual void WriteSLNHeader(std::ostream& fout); |