summaryrefslogtreecommitdiffstats
path: root/Source/cmake.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-12 17:32:48 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-12 21:10:44 (GMT)
commit0ee3ccb3b0a25264e8302a150eee297dd40affde (patch)
tree23493474bc5283b1dcb82bca662c26345a798ad1 /Source/cmake.h
parent57dd094eded03a94402b6eecf7027325bd7b5136 (diff)
downloadCMake-0ee3ccb3b0a25264e8302a150eee297dd40affde.zip
CMake-0ee3ccb3b0a25264e8302a150eee297dd40affde.tar.gz
CMake-0ee3ccb3b0a25264e8302a150eee297dd40affde.tar.bz2
cmake: Fix variable name bugs.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r--Source/cmake.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmake.h b/Source/cmake.h
index c436c77..26ee8fe 100644
--- a/Source/cmake.h
+++ b/Source/cmake.h
@@ -117,7 +117,7 @@ class cmake
{
return this->cmHomeDirectory.c_str();
}
- void SetHomeOutputDirectory(const std::string& lib);
+ void SetHomeOutputDirectory(const std::string& dir);
const char* GetHomeOutputDirectory() const
{
return this->HomeOutputDirectory.c_str();
@@ -141,9 +141,9 @@ class cmake
{
return this->cmStartDirectory.c_str();
}
- void SetStartOutputDirectory(const std::string& lib)
+ void SetStartOutputDirectory(const std::string& dir)
{
- this->StartOutputDirectory = lib;
+ this->StartOutputDirectory = dir;
cmSystemTools::ConvertToUnixSlashes(this->StartOutputDirectory);
}
const char* GetStartOutputDirectory() const