summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-18 12:50:32 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-18 13:29:17 (GMT)
commita2f2aeee2f4d4af1f25f4a5b86bacb8a81a7dec4 (patch)
treedd46c44fb1a2267149352ff1a95b09b72ce737f8 /Source/cmMakefile.cxx
parent68f791cd06983e8fd375edfba74a9d821231e269 (diff)
downloadCMake-a2f2aeee2f4d4af1f25f4a5b86bacb8a81a7dec4.zip
CMake-a2f2aeee2f4d4af1f25f4a5b86bacb8a81a7dec4.tar.gz
CMake-a2f2aeee2f4d4af1f25f4a5b86bacb8a81a7dec4.tar.bz2
cmMakefile: Add wrapper for reading listfiles which have an origin.
Such files are delegates from other files, and so they set the CMAKE_PARENT_LIST_FILE to the originator. They also may set a policy scope.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index b08725e..29e564f 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -528,6 +528,12 @@ bool cmMakefile::ProcessBuildsystemFile(const char* listfile)
this->cmStartDirectory == this->cmHomeDirectory);
}
+bool cmMakefile::ReadDependentFile(const char* listfile, bool noPolicyScope)
+{
+ return this->ReadListFile(this->GetCurrentListFile(), listfile,
+ noPolicyScope);
+}
+
//----------------------------------------------------------------------------
// Parse the given CMakeLists.txt file executing all commands
//