]> git.tdb.fi Git - builder.git/blobdiff - source/msvclinker.h
Rearrange sources into subdirectories
[builder.git] / source / msvclinker.h
diff --git a/source/msvclinker.h b/source/msvclinker.h
deleted file mode 100644 (file)
index 4320e48..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef MSVCLINKER_H_
-#define MSVCLINKER_H_
-
-#include "tool.h"
-
-class Binary;
-class MicrosoftTools;
-
-class MsvcLinker: public Tool
-{
-private:
-       const MicrosoftTools &ms_tools;
-
-public:
-       MsvcLinker(Builder &, const Architecture &, const MicrosoftTools &);
-
-       Target *create_target(const std::vector<Target *> &, const std::string &) override;
-       std::string create_build_signature(const BuildInfo &) const override;
-
-protected:
-       void do_prepare(ToolData &data) const override;
-
-public:
-       static ExternalTask::Arguments _run(const Binary &, Msp::FS::Path &);
-};
-
-#endif