diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-15 18:47:35 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-05 16:43:18 (GMT) |
commit | 21f428f4c0adf7045e852be30739cd1243aa96fe (patch) | |
tree | 79d8d42b4a721865dc8f8b70fd0c9948e830cb6f /Source/cmGlobalVisualStudio8Generator.cxx | |
parent | a9588e90bbddbfe71b1d33d63d38eedaf397023f (diff) | |
download | CMake-21f428f4c0adf7045e852be30739cd1243aa96fe.zip CMake-21f428f4c0adf7045e852be30739cd1243aa96fe.tar.gz CMake-21f428f4c0adf7045e852be30739cd1243aa96fe.tar.bz2 |
VisualStudio: Replace Compute override with AddExtraIDETargets override.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.cxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index 70c00e9..86a8f87 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -348,13 +348,9 @@ bool cmGlobalVisualStudio8Generator::AddCheckTarget() } //---------------------------------------------------------------------------- -bool cmGlobalVisualStudio8Generator::Compute() +void cmGlobalVisualStudio8Generator::AddExtraIDETargets() { - if (!cmGlobalVisualStudio7Generator::Compute()) - { - return false; - } - + cmGlobalVisualStudio7Generator::AddExtraIDETargets(); if(this->AddCheckTarget()) { // All targets depend on the build-system check target. @@ -368,7 +364,6 @@ bool cmGlobalVisualStudio8Generator::Compute() } } } - return true; } //---------------------------------------------------------------------------- |