diff options
author | Gilles Khouzam <gillesk@microsoft.com> | 2014-07-29 15:28:02 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-31 14:46:00 (GMT) |
commit | fe161dc30daf4d329e74d0586f47780b4c127ed4 (patch) | |
tree | 39553d5e3cbdffa5d722652128ee91c3f43696fa /Source/cmGlobalVisualStudio8Generator.cxx | |
parent | 66edd06587bfaafc2cb1f24286925750454ec9cc (diff) | |
download | CMake-fe161dc30daf4d329e74d0586f47780b4c127ed4.zip CMake-fe161dc30daf4d329e74d0586f47780b4c127ed4.tar.gz CMake-fe161dc30daf4d329e74d0586f47780b4c127ed4.tar.bz2 |
VS: Refactor logic deciding to add "Deploy" to the .sln file
Move the condition to a "NeedsDeploy" virtual method that can be
overridden by more recent VS generators.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.cxx | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index 9fd3d5a..6bfef68 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -398,9 +398,7 @@ cmGlobalVisualStudio8Generator platformMapping : this->GetPlatformName()) << "\n"; } - bool needsDeploy = (type == cmTarget::EXECUTABLE || - type == cmTarget::SHARED_LIBRARY); - if(this->TargetsWindowsCE() && needsDeploy) + if(this->NeedsDeploy(type)) { fout << "\t\t{" << guid << "}." << *i << "|" << this->GetPlatformName() << ".Deploy.0 = " << *i << "|" @@ -412,6 +410,15 @@ cmGlobalVisualStudio8Generator } //---------------------------------------------------------------------------- +bool +cmGlobalVisualStudio8Generator::NeedsDeploy(cmTarget::TargetType type) const +{ + bool needsDeploy = (type == cmTarget::EXECUTABLE || + type == cmTarget::SHARED_LIBRARY); + return this->TargetsWindowsCE() && needsDeploy; +} + +//---------------------------------------------------------------------------- bool cmGlobalVisualStudio8Generator::ComputeTargetDepends() { // Skip over the cmGlobalVisualStudioGenerator implementation! |