summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h
index 47557b9..a006808 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.h
+++ b/Source/cmGlobalUnixMakefileGenerator3.h
@@ -123,11 +123,10 @@ public:
const char *targetName,
const char* config, bool ignoreErrors, bool fast);
- // returns true if a progress rule should be added
- int ShouldAddProgressRule();
- int GetNumberOfCompilableSourceFilesForTarget(cmTarget &tgt);
- int GetTargetTotalNumberOfProgressFiles(cmTarget& target);
- int GetNumberOfSourceFiles() { return this->NumberOfSourceFiles; };
+ // returns some progress informaiton
+ int GetTargetTotalNumberOfActions(cmTarget& target);
+ unsigned long GetNumberOfProgressActionsInAll
+ (cmLocalUnixMakefileGenerator3 *lg);
// what targets does the specified target depend on
std::vector<cmTarget *>& GetTargetDepends(cmTarget& target);
@@ -183,9 +182,6 @@ protected:
typedef std::map<cmStdString, cmStdString> MultipleOutputPairsType;
MultipleOutputPairsType MultipleOutputPairs;
- int NumberOfSourceFiles;
- int NumberOfSourceFilesWritten;
-
std::map<cmStdString, std::vector<cmTarget *> > TargetDependencies;
std::map<cmStdString, int > TargetSourceFileCount;
};