summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-01 17:35:12 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-01 18:32:47 (GMT)
commitc3a60cc9cce4881f64bd0342cc841900533719e2 (patch)
tree5a46c154b5e8a76da993339c4bc4d8810fa7adbb /Source/cmMakefile.cxx
parent37897347b3fd97668d4831bba11e23f9f493e759 (diff)
downloadCMake-c3a60cc9cce4881f64bd0342cc841900533719e2.zip
CMake-c3a60cc9cce4881f64bd0342cc841900533719e2.tar.gz
CMake-c3a60cc9cce4881f64bd0342cc841900533719e2.tar.bz2
cmMakefile: Remove AddExtraDirectory method.
It has no effect.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 7f355a6..a89ebc5 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -114,7 +114,6 @@ cmMakefile::cmMakefile(const cmMakefile& mf): Internal(new Internals)
this->Internal->VarUsageStack.push(mf.Internal->VarUsageStack.top());
this->Prefix = mf.Prefix;
- this->AuxSourceDirectories = mf.AuxSourceDirectories;
this->cmStartDirectory = mf.cmStartDirectory;
this->StartOutputDirectory = mf.StartOutputDirectory;
this->cmHomeDirectory = mf.cmHomeDirectory;
@@ -2256,11 +2255,6 @@ void cmMakefile::AddSourceGroup(const std::vector<std::string>& name,
#endif
-void cmMakefile::AddExtraDirectory(const char* dir)
-{
- this->AuxSourceDirectories.push_back(dir);
-}
-
static bool mightExpandVariablesCMP0019(const char* s)
{
return s && *s && strstr(s,"${") && strchr(s,'}');