summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-02 08:56:33 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-25 17:55:32 (GMT)
commite8c0341d86e3f2b9658dfc594641f9ba1b29165b (patch)
tree2cf201b9c34a7805cef2c63a1033efa6e19a489a /Source/cmMakefile.cxx
parentf4150bd88d80f4a236ea5b0d648d8cc3122092fc (diff)
downloadCMake-e8c0341d86e3f2b9658dfc594641f9ba1b29165b.zip
CMake-e8c0341d86e3f2b9658dfc594641f9ba1b29165b.tar.gz
CMake-e8c0341d86e3f2b9658dfc594641f9ba1b29165b.tar.bz2
cmMakefile: Out-of-line GetProjectName.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 2296d5a..73911a5 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -2049,6 +2049,10 @@ void cmMakefile::SetProjectName(const char* p)
this->ProjectName = p;
}
+const char* cmMakefile::GetProjectName() const
+{
+ return this->ProjectName.c_str();
+}
void cmMakefile::AddGlobalLinkInformation(const std::string& name,
cmTarget& target)