summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-02 08:57:31 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-25 17:55:34 (GMT)
commit6ce940ac9701c93be01ed169c6bd23b22e04782f (patch)
treea772611160eeee031c2a6f25d7e4b0fae7a42736 /Source/cmMakefile.h
parente8c0341d86e3f2b9658dfc594641f9ba1b29165b (diff)
downloadCMake-6ce940ac9701c93be01ed169c6bd23b22e04782f.zip
CMake-6ce940ac9701c93be01ed169c6bd23b22e04782f.tar.gz
CMake-6ce940ac9701c93be01ed169c6bd23b22e04782f.tar.bz2
cmMakefile: Use std::string in ProjectName API.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 959f0e7..dfd3e19 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -274,12 +274,12 @@ public:
/**
* Specify the name of the project for this build.
*/
- void SetProjectName(const char*);
+ void SetProjectName(std::string const& name);
/**
* Get the name of the project for this build.
*/
- const char* GetProjectName() const;
+ std::string GetProjectName() const;
/** Get the configurations to be generated. */
std::string GetConfigurations(std::vector<std::string>& configs,