diff options
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 686687d..cae19a3 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -78,6 +78,9 @@ public: // write the main variables used by the makefiles void WriteMakeVariables(std::ostream& makefileStream); + // write the progress variables used by the makefiles + void WriteProgressVariables(unsigned long total, unsigned long ¤t); + /** * If true, then explicitly pass MAKEFLAGS on the make all target for makes * that do not use environment variables. @@ -208,6 +211,10 @@ public: std::map<cmStdString,std::vector<cmTarget *> > GetLocalObjectFiles() { return this->LocalObjectFiles;} + // return info about progress actions + unsigned long GetNumberOfProgressActions(); + unsigned long GetNumberOfProgressActionsForTarget(const char *); + protected: // these two methods just compute reasonable values for LibraryOutputPath // and ExecutableOutputPath |