diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-07-11 13:55:27 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-07-11 13:55:27 (GMT) |
commit | f1dfa7e78f5bceb57b9952769f0611edb10a0556 (patch) | |
tree | d7798f9e54d67bbe87ac72a91ac865ec4dd7e92a /Source/cmLocalUnixMakefileGenerator3.h | |
parent | 5604a14d7d26defb18a4369a63ee8ab4c15d078d (diff) | |
download | CMake-f1dfa7e78f5bceb57b9952769f0611edb10a0556.zip CMake-f1dfa7e78f5bceb57b9952769f0611edb10a0556.tar.gz CMake-f1dfa7e78f5bceb57b9952769f0611edb10a0556.tar.bz2 |
BUG: changed to progress to make it more flexible and to no relink targets as often
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 |