]> git.tdb.fi Git - builder.git/blob - source/mingwdlltool.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / mingwdlltool.h
1 #ifndef DLLTOOL_H_
2 #define DLLTOOL_H_
3
4 #include "tool.h"
5
6 class MingwDllTool: public Tool
7 {
8 public:
9         MingwDllTool(Builder &, const Architecture &);
10
11         virtual Target *create_target(const std::list<Target *> &, const std::string &);
12         virtual Target *create_install(Target &) const;
13         virtual Task *run(const Target &) const;
14 };
15
16 #endif