]> git.tdb.fi Git - builder.git/blob - source/buildinfo.h
02549ea3a00628a781319700b26a8fcd9b38463d
[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 };
22
23 #endif