]> git.tdb.fi Git - builder.git/blob - source/mingwdlltool.h
Delay locating tool executables until the tool is needed
[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
14 private:
15         virtual void do_prepare();
16
17 public:
18         virtual Task *run(const Target &) const;
19 };
20
21 #endif