]> git.tdb.fi Git - builder.git/blob - plugins/gnu/mingwdlltool.h
d35fa19aaf919d5c5490f0b8a064ce56c3cdb1e6
[builder.git] / plugins / gnu / mingwdlltool.h
1 #ifndef DLLTOOL_H_
2 #define DLLTOOL_H_
3
4 #include <msp/builder/tool.h>
5
6 class MingwDllTool: public Tool
7 {
8 public:
9         MingwDllTool(Builder &, const Architecture &);
10
11         Target *create_target(const std::vector<Target *> &, const std::string &) override;
12         Target *create_install(Target &) const override;
13
14 private:
15         static Task *_run(const Target &);
16 };
17
18 #endif