]> git.tdb.fi Git - builder.git/blob - plugins/gnu/mingwdlltool.h
Don't use a versioned name for import libraries
[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
13 private:
14         static Task *_run(const Target &);
15 };
16
17 #endif