diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-18 12:50:31 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-18 13:29:17 (GMT) |
commit | 68f791cd06983e8fd375edfba74a9d821231e269 (patch) | |
tree | 3735005251b63f52356415298a149c900bddbf88 /Source/cmMakefile.h | |
parent | 5bb4248a807029053156dbf4a3cdba4427766306 (diff) | |
download | CMake-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/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index ce21c60..33c4b20 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -87,7 +87,10 @@ public: */ bool ReadListFile(const char* listfile, const char* external= 0, - bool noPolicyScope = true); + bool noPolicyScope = true, + bool requireProjectCommand = false); + + bool ProcessBuildsystemFile(const char* listfile); /** * Add a function blocker to this makefile |