]> git.tdb.fi Git - builder.git/blob - source/buildinfo.h
Builder can build itself now.
[builder.git] / source / buildinfo.h
1 #ifndef BUILDINFO_H_
2 #define BUILDINFO_H_
3
4 #include <list>
5 #include <string>
6
7 class BuildInfo
8 {
9 public:
10         typedef std::list<std::string> InfoList;
11         
12         InfoList cflags;
13         InfoList defines;
14         InfoList incpath;
15         InfoList ldflags;
16         InfoList libpath;
17         InfoList libs;
18
19         void add(const BuildInfo &);
20         void unique();
21 private:
22         void unique(InfoList &);
23 };
24
25 #endif