diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-09-12 00:22:33 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-09-12 00:22:33 +0000 |
commit | d19ada0aa88aba1c7b439035c0028440ac860ec3 (patch) | |
tree | fb8cde98650aa66fcdb736b045f541eac1b8b93a /src/buildparser.h | |
parent | 97d529fac68105f0d3d34c699a4ac10489c705e8 (diff) | |
download | build-d19ada0aa88aba1c7b439035c0028440ac860ec3.tar.gz build-d19ada0aa88aba1c7b439035c0028440ac860ec3.tar.bz2 build-d19ada0aa88aba1c7b439035c0028440ac860ec3.tar.xz build-d19ada0aa88aba1c7b439035c0028440ac860ec3.zip |
Build now builds, it has viewers, and dependancy checking, and everything works.
Now we have to add cleaning, caching, and more viewer hooks / viewers.
Diffstat (limited to '')
-rw-r--r-- | src/buildparser.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/buildparser.h b/src/buildparser.h index 2e1924c..dda2d80 100644 --- a/src/buildparser.h +++ b/src/buildparser.h | |||
@@ -127,6 +127,7 @@ public: // Rules functions | |||
127 | void addRuleRequires(); | 127 | void addRuleRequires(); |
128 | void addRuleInputFilter(); | 128 | void addRuleInputFilter(); |
129 | void addRulePerform(); | 129 | void addRulePerform(); |
130 | void setRuleAggregate(); | ||
130 | 131 | ||
131 | private: // Rule variables | 132 | private: // Rule variables |
132 | class RuleInfo | 133 | class RuleInfo |
@@ -138,6 +139,7 @@ private: // Rule variables | |||
138 | BuildList lRequires; | 139 | BuildList lRequires; |
139 | FunctionList lFilter; | 140 | FunctionList lFilter; |
140 | PerformList lPerform; | 141 | PerformList lPerform; |
142 | Function *pAggregate; | ||
141 | }; | 143 | }; |
142 | 144 | ||
143 | typedef std::list<RuleInfo> RuleTmpList; | 145 | typedef std::list<RuleInfo> RuleTmpList; |