diff options
author | Patrick Gansterer <paroga@paroga.com> | 2012-09-14 10:06:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-11-27 13:31:20 (GMT) |
commit | 3a1006e41fd7be22c415d1de45364f0c8ff4b697 (patch) | |
tree | 15a4aa1404a9b3c21754d7ea35a9bbdeee237509 /Source/cmGlobalVisualStudio7Generator.cxx | |
parent | 40c36c9f7bd101185b06ddf2aee079ccbe7634d3 (diff) | |
download | CMake-3a1006e41fd7be22c415d1de45364f0c8ff4b697.zip CMake-3a1006e41fd7be22c415d1de45364f0c8ff4b697.tar.gz CMake-3a1006e41fd7be22c415d1de45364f0c8ff4b697.tar.bz2 |
VS: Added "Deploy" at project configuration for WindowsCE targets
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index b82a4f4..71d79a1 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -247,7 +247,7 @@ void cmGlobalVisualStudio7Generator::WriteTargetConfigurations( std::set<std::string> allConfigurations(this->Configurations.begin(), this->Configurations.end()); this->WriteProjectConfigurations( - fout, target->GetName(), + fout, target->GetName(), target->GetType(), allConfigurations, target->GetProperty("VS_PLATFORM_MAPPING")); } else @@ -259,7 +259,7 @@ void cmGlobalVisualStudio7Generator::WriteTargetConfigurations( target->GetProperty("GENERATOR_FILE_NAME"); if (vcprojName) { - this->WriteProjectConfigurations(fout, vcprojName, + this->WriteProjectConfigurations(fout, vcprojName, target->GetType(), configsPartOfDefaultBuild); } } @@ -587,7 +587,7 @@ cmGlobalVisualStudio7Generator // executables to the libraries it uses are also done here void cmGlobalVisualStudio7Generator ::WriteProjectConfigurations( - std::ostream& fout, const char* name, + std::ostream& fout, const char* name, cmTarget::TargetType, const std::set<std::string>& configsPartOfDefaultBuild, const char* platformMapping) { |