summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-11-29 20:59:16 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-11-29 20:59:16 (GMT)
commitccb77b65c673037780483e23c7bc1b4bf1d17cbc (patch)
tree0cd149a96082da683a29bb31a6bfc0f60555e0d5 /Source/cmLocalUnixMakefileGenerator3.cxx
parent46f8ed064820ec7a9d645a55a1ad7a0d3d7b8134 (diff)
downloadCMake-ccb77b65c673037780483e23c7bc1b4bf1d17cbc.zip
CMake-ccb77b65c673037780483e23c7bc1b4bf1d17cbc.tar.gz
CMake-ccb77b65c673037780483e23c7bc1b4bf1d17cbc.tar.bz2
ENH: unify version stuff, get rid of it out of cmake and cmMakefile and only use cmVersion
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 059de85..bb558ea 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -23,6 +23,7 @@
#include "cmMakefileTargetGenerator.h"
#include "cmSourceFile.h"
#include "cmake.h"
+#include "cmVersion.h"
// Include dependency scanners for supported languages. Only the
// C/C++ scanner is needed for bootstrapping CMake.
@@ -1728,8 +1729,8 @@ void cmLocalUnixMakefileGenerator3::WriteDisclaimer(std::ostream& os)
<< "# CMAKE generated file: DO NOT EDIT!\n"
<< "# Generated by \"" << this->GlobalGenerator->GetName() << "\""
<< " Generator, CMake Version "
- << cmMakefile::GetMajorVersion() << "."
- << cmMakefile::GetMinorVersion() << "\n\n";
+ << cmVersion::GetMajorVersion() << "."
+ << cmVersion::GetMinorVersion() << "\n\n";
}
//----------------------------------------------------------------------------