]> git.tdb.fi Git - builder.git/blobdiff - source/buildinfo.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / buildinfo.h
diff --git a/source/buildinfo.h b/source/buildinfo.h
deleted file mode 100644 (file)
index a4035b1..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef BUILDINFO_H_
-#define BUILDINFO_H_
-
-#include <list>
-#include <string>
-
-class BuildInfo
-{
-public:
-       typedef std::list<std::string> InfoList;
-       
-       InfoList cflags;
-       InfoList defines;
-       InfoList incpath;
-       InfoList ldflags;
-       InfoList libpath;
-       InfoList libs;
-
-       void add(const BuildInfo &);
-       void unique();
-private:
-       void unique(InfoList &);
-};
-
-#endif