summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-18 12:50:31 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-18 13:29:17 (GMT)
commit68f791cd06983e8fd375edfba74a9d821231e269 (patch)
tree3735005251b63f52356415298a149c900bddbf88 /Source/cmLocalGenerator.cxx
parent5bb4248a807029053156dbf4a3cdba4427766306 (diff)
downloadCMake-68f791cd06983e8fd375edfba74a9d821231e269.zip
CMake-68f791cd06983e8fd375edfba74a9d821231e269.tar.gz
CMake-68f791cd06983e8fd375edfba74a9d821231e269.tar.bz2
cmMakefile: Add a method for processing buildsystem files.
These are different from other ListFiles in that a project() command is required if it is top-level.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index c143bce..56e17ec 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -181,7 +181,7 @@ void cmLocalGenerator::ReadInputFile()
currentStart += "/CMakeLists.txt";
if(cmSystemTools::FileExists(currentStart.c_str(), true))
{
- this->Makefile->ReadListFile(currentStart.c_str());
+ this->Makefile->ProcessBuildsystemFile(currentStart.c_str());
return;
}