]> git.tdb.fi Git - builder.git/blobdiff - source/mingwdlltool.h
Build and install import libraries on windows
[builder.git] / source / mingwdlltool.h
diff --git a/source/mingwdlltool.h b/source/mingwdlltool.h
new file mode 100644 (file)
index 0000000..25a1e10
--- /dev/null
@@ -0,0 +1,17 @@
+#ifndef DLLTOOL_H_
+#define DLLTOOL_H_
+
+#include "tool.h"
+
+class MingwDllTool: public Tool
+{
+public:
+       MingwDllTool(Builder &, const Architecture &);
+
+       virtual Target *create_target(const std::list<Target *> &, const std::string &) const;
+       virtual Target *create_install(Target &) const;
+
+       virtual Task *run(const Target &) const;
+};
+
+#endif