diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-30 17:12:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-06-04 13:06:40 (GMT) |
commit | 363caa2fa540190ea394122fca3cb72d951823ad (patch) | |
tree | 1a5a8cc992fa592818fb933eb13736398ed38065 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 6e570f857acd3322640db72112f2dc37b69396cf (diff) | |
download | CMake-363caa2fa540190ea394122fca3cb72d951823ad.zip CMake-363caa2fa540190ea394122fca3cb72d951823ad.tar.gz CMake-363caa2fa540190ea394122fca3cb72d951823ad.tar.bz2 |
cmLocalGenerator: De-virtualize Configure().
The generators that override it do so in order to populate
data members which can instead be populated in Generate().
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 3eea59b..c9eea56 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -98,7 +98,7 @@ cmLocalUnixMakefileGenerator3::~cmLocalUnixMakefileGenerator3() } //---------------------------------------------------------------------------- -void cmLocalUnixMakefileGenerator3::Configure() +void cmLocalUnixMakefileGenerator3::Generate() { // Compute the path to use when referencing the current output // directory from the top output directory. @@ -112,12 +112,7 @@ void cmLocalUnixMakefileGenerator3::Configure() { this->HomeRelativeOutputPath += "/"; } - this->cmLocalGenerator::Configure(); -} -//---------------------------------------------------------------------------- -void cmLocalUnixMakefileGenerator3::Generate() -{ // Store the configuration name that will be generated. if(const char* config = this->Makefile->GetDefinition("CMAKE_BUILD_TYPE")) { |